@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Grey+Qo');
@import url('https://fonts.googleapis.com/css?family=PT+Sans+Narrow');

* { 
  box-sizing: border-box; 
} 

section {
  background-color: #effff1;
  padding: 20px;
  border-radius: 20px;
}
 
body { 
  font-family: 'Quicksand', 'Segoe UI', 'Arial', 'sans-serif';
  color: #423f37;
  background-color: #ffffff;
  padding: 10px; 
  text-align: center;
} 

span {
    font-size: 15px;
    font-family: "Quicksand";
    font-weight: bold;
}
 
 
.row { 
  display: flex; 
  flex-wrap: wrap; 
} 
 
.leftcolumn { 
  flex: 70%; 
  padding: 20px; 
} 
 
.rightcolumn { 
  flex: 30%; 
  padding: 20px; 
} 
 
.card { 
  background-color: white; 
  padding: 20px; 
  margin-top: 20px; 
} 
 
.footer { 
  padding: 20px; 
  text-align: center; 
  background: #ffffff; 
  margin-top: 20px; 
} 

h1:hover {
  font-size: 55px;
  font-family: "Quicksand";
  color: rgb(65, 115, 223);
}

h1 {
  color: darkgoldenrod;
  padding:20px;
  text-align: center;
  font-family: "Quicksand";
  font-size: 55px;
  transition: color 0.5s;
  text-decoration: underline;
}

h2 {
  font-family: "Quicksand";
  color: rgb(65, 115, 223);
  font-size: 40px;
  padding: 3px;
  text-align: center;
  text-decoration: underline;
}

h2:hover {
  font-family: "Quicksand";
  color: darkgoldenrod;
  font-size: 40px;
  padding: 3px;
  text-align: center;
}

p {
  font-family: "Quicksand";
  font-size: 25px;
  line-height: 1.6;
  text-align: center;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-100px);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) translateY(10px);
  }
  70% {
    transform: scale(0.9) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 800px) { 
  .leftcolumn, .rightcolumn { 
    flex: 100%; 
  } 
} 

button {
      padding: 12px 24px;
      font-size: 1.1em;
      margin: 10px;
      border-radius: 12px;
      background: #effff1;
      cursor: pointer;
      transition: transform 0.2s;
      box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

button:hover {
      transform: scale(1.05);
}

a {
  text-decoration: underline;
  padding: 10px;
  color: rgb(65, 115, 223);
  font-family: "Quicksand";
  font-size: 20px;
  text-align: center;
}

.center-links {
  text-align: center;
  font-weight: bold;
}

.center-links a {
  display: inline-block;
  margin: 0 0.5rem;
  color: #423f37;
  text-align: center;
  padding: 20px 30px;
  text-decoration: none;
  background-color: rgb(65, 115, 223);
}

.center-links a:hover { 
  background-color: darkgoldenrod; 
  color: black; 
} 