@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding:0 20px;
  background-origin: red;

  font-family: 'Roboto', sans-serif;
  font-size: 16px; 
  line-height: 1.6;
  color: #333; 
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #000;
}

p, a, button {
    font-weight: 400; 
    font-size: 16px; 
}

#section {
  width: 80%;
  max-width: 960px;
  background-color: white;
  box-shadow: 0 0.5rem 0.5rem #c9c9c9;
  padding: 20px;
  text-align: left;
}

hr {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}

#section img{

  width: 100%;
  max-width: 400px;
  height: auto;
}

#cn img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

#si {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-bottom: 20px;
}

#si a {
  color: inherit;
  margin-right: 8px;
  font-size: 2rem;
}

#si .fa-facebook { color: #3b5998; }
#si .fa-twitter { color: #1da1f2; }
#si .fa-linkedin { color: #0077b5; }

.bk {
  margin: 2rem 0 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.cr {
  display: flex;
  flex-direction: row;
  background-color: #fff;
   border: none;
}

.cl {
  background-color: #90EE90;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cl img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.cdr {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

blockquote {
  margin: 0px 0px 0px 1rem;
  font-style: italic;
  color: #666;
  font-size: 1.2rem;
}

hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #e0e0e0;
}

.dn {
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px 0px 0px 1rem;

}

.dn span {
  font-weight: normal;
  font-style: italic;
  color: #999;
}

#bf {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 5rem 0;
}

#bf #cd img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

#cd {
  position: relative;
  background-color: #d6e4ef;
  padding: 20px;
  border: 2px solid #e1e1e1;
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 700px;
}

#cd #br {
  position: absolute;
  top: 0;
  right: 10%;
  transform: translate(-0%, -80%);
  background-color: red;
  color: white;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
}

#br a {
  text-decoration: none;
  color: white;
}

#cd h2 {
  margin-top: 0;
  font-size: 16px;
}

#cd #br {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: red;
  color: white;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
}

#cd p {
  font-size: 14px;
  margin: 10px 0;
}

#cd button {
  background-color: red;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

#cd button:hover {
  background-color: #d9534f;
  transform: scale(1.05);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

#footer {
  background-color: #f4f4f4;
  padding: 20px;
  font-size: 10px;
  text-align: center;
  box-shadow: 0 -0.5rem 0.5rem #c9c9c9;
  margin-top: auto;
}

#footer p {
  margin: 5px 0;
  font-size: 5px;
}

#footer p a {
  color: inherit;
  text-decoration: none;
  margin: 0 5px;
  font-size: 5px;
}

@media (min-width: 320px) {
  #section {
    width: 100%;
  }
  .footer {
    padding: 20px 40px;
    text-align: left;
  }

  body {
    font-size: 14px; 
}

h1 {
    font-size: 1.3em;
}

h2 {
    font-size: 1.6em;
}

h3 {
    font-size: 1.4em;
}

#cd button {
  width: 250px;
  height:70px;
}

#footer p{
  font-size: 10px;
}
}

@media (min-width: 1024px) {
  #section {
    width: 50%;
  }
}