*{
    text-decoration: none;
    margin: 0;
}
.navbar{
    background-color: black;
    font-family: 'Montserrat', sans-serif;
    padding-right: 15px;
    padding-left: 15px;
    text-align: center;
    align-items: center;
}
.navdiv{
    display: flex;
    align-items: center;
    justify-content: center;
}
li{
    list-style: none;
    display: inline-flex;
}
li a{
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-right: 25px;
    font-size: 24px;
}
li a:hover{
    font-size:20px;
    transition: color 0.15s ease-in;
    color: rgba(255, 255, 255, 0.712);
}
#headertext{
    text-align: center;
    padding-left: 125px;
    padding-right: 125px;
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: bold;
    color: white;
}
#header{
    background-image: url(images/heroimage.png);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    padding: 75px 125px;
}
.heading{
    text-align: left;
    padding-right: 125px;
    padding-left: 125px;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: bold;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0 cover 40%;
}
.info{
    text-align: center;
    padding-right: 125px;
    padding-left: 125px;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0 cover 40%;
}
body{
    background-color: whitesmoke;
}
#introduction{
    font-size: 18px;
    padding-left: 125px;
    padding-right: 125px;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0 cover 40%;
}
.footer {
    background-color: #111;
    color: #ccc;
    font-size: 14px;
    padding: 20px;
}
.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.footer-links {
    margin-top: 10px;
}
.footer-links a {
    color: #ccc;
    margin: 0 10px;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}

@media (min-width: 600px) {
  .footer-container {
      flex-direction: row;
  }
  .footer-links {
      margin-top: 0;
  }
}
footer div p{
    font-family: 'Montserrat', sans-serif;
}
footer div div a{
    font-family: 'Montserrat', sans-serif;
}
@keyframes appear{
    from{
        opacity: 0;
        scale: 0.5;
    }
    to{
        opacity: 1;
        scale: 1;
    }
}
img{
    width: 100%;
    height: auto;
    display: block;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0 cover 40%;
}
#headertext{
    text-align: center;
}