/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background: linear-gradient(180deg,rgba(224, 234, 240, 1) 0%, rgba(223, 234, 224, 1) 100%);
  color: #1e1e1e;
  font-family: "Roboto", sans-serif;
  font-size:14px;
  width:100%;
  margin:0;
  padding:0;
  height: auto;
  background-attachment: fixed;
  background-size: cover;
}

b {
  color:#5F6F7B;
}

a {
  text-decoration:none;
  color:#2a6d66;
  font-weight:500;
}

.container {
  width: 66%;
  display: flex;
  flex-direction:column;
  align-items: center;
  justify-content: center;
  margin:1em auto;
  background-color:#f3f3f3;
  position:relative;
  z-index:11;
}

.wrapper {
  width:75%;
  align-items: center;
  justify-content: center;
  padding:1.5rem;
  text-align:justify;
}

.fiftyfifty {
  width:100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction:row;
  margin-top:3em;
  margin-bottom:3em;
}

.redoni {
  width:50%;
  display: flex;
  flex-direction:column;
  padding:1;
  text-align:justify;
  margin-right:0.5rem;
}

.redoni .dropshadow {
  margin-top:0.5rem;
}

.redoni .dropshadow img  {
  box-shadow: 10px 10px 0px #A9C3C5;
   width:100%;
  height:fit-content;
}

.blueoni {
  width:50%;
  display: flex;
  flex-direction:column;
  padding:1;
  padding:1em;
  margin-left:0.5rem;
}

.quote {
  width:100%;
  position:relative;
}

.quoted {
  font-style:italic;
  font-size:1.75rem;
  color:#1e1e1e;
  font-family: "Bodoni Moda", serif;
  font-weight:400;
  text-align:center;
  z-index:9;
  position:relative;
}

.quoted b {
  font-weight:400;
  color:#5F6F7B;
}

.quoted u {
  text-decoration:underline;
  text-decoration-color:#5F6F7B;
}

.quotedby {
  text-transform:uppercase;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.1em;
  margin-top:1em;
  font-weight:600;
  z-index:9;
  position:relative;
  font-size:1rem;
  font-style:normal;
}

/*welcome*/

h5 {
  text-align:center;
  font-weight:700;
  font-family: "Bodoni Moda", serif;
  text-transform:uppercase;
  color:#5F6F7B;
  font-size:2rem;
  line-height:0;
  margin:2rem;
}

h5::before {
  content: url("https://lykir.neocities.org/chibih5.png");
  display: inline-block;
}

/* mobile settings */

@media only screen and (max-width: 1024px) {
  
.container {
  margin:0 auto;
  height: auto;
}
  
}

@media only screen and (max-width: 768px) {
  
.container {
  width: 100%;
  margin:0 auto;
  height: auto;
}

.fiftyfifty {
  flex-direction:column;
}

.redoni {
  width:100%;
  margin-right:0rem;
}

.redoni .dropshadow img  {
   width:95%;
   height:auto;
}

.blueoni {
  width:100%;
  margin-left:0rem;
}

/*welcome*/
h5 {
  font-size:2rem;
}

  
}