@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Code+Latin:wght@100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Code+Latin:wght@100..700&family=Rock+Salt&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=M+PLUS+Code+Latin:wght@100..700&family=Rock+Salt&display=swap');
html {
  height: 100%;
  width: 100%;
  background-color: #FCBF49;
}

.mainTitle {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: #003049;
  font-size: 100px;
  border-radius: 20px;
  animation: slideIn 1s;
  animation-iteration-count: 1;
}
.linkButton {
    color: #EAE2B7;
    background-color: #D62828;
    font-size: 20px;
    transition: font-size 1s;
}
.linkButton:hover{
    font-size: 15px;
}

.infoText{
    font-size: 20px;
}
.mainSection {
  padding-top: 10px;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #003049;
}
#clickButton {
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: #003049;
    font-size: 20px;
    border-radius: 20px;
    background-color: #EAE2B7; 
    border-radius: 10px;
}
@keyframes slideIn{
    from {
        font-size: 0px;
    }
    to {
        font-size: 100px;
    }
}
b {
    font-family: "M PLUS Code Latin", monospace;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
      color: #D62828;
}
i {
    font-family: "M PLUS Code Latin", monospace;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: italic;
    font-variation-settings:
      "wdth" 100; 
      color:#D62828;
}
.navBar {
  padding-top: 10px;
  padding-left: 20px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: #003049;
}
.navItem {
  padding-right: 5px;
  transition: background-color 0.5s ease-in-out;
  color: #003049;
}
.navItem:hover {
  background-color: #F77F00;
}