body {
    font-family: 'Roboto', sans-serif;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}

/* navbar */
.navbar {
    display: flex;
    margin-left: 5%;
    margin-right: 5%;
}
.navbar-logo {
    width: 100px;
}
.navbar-buttons {
    display: flex;
    width: 100%;
}
.navbar-buttons {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
}

a {
    text-decoration: none;
    color: #000;
}

.navbar-button {
    flex: 1;
    font-family: 'Electrolize', sans-serif;
    text-align: center;
    color: #CB0006;
    padding: 10px;
    border-radius: 5px;
    margin: 0 5px;
}

.navbar-contact {
    color: rgb(255, 255, 255);
    background-color: #CB0006;
    border-radius: 5px;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
}

/* Landing page */
.landing {
    display: flex;
    background-color: rgb(223, 223, 223);
    height: 120vh;
}
.landing img:first-child {
    width: 100vw;
    object-fit: cover;
    object-position: left
}
.veb {
    position: absolute;
    bottom: -28%;
    right: 0%;

    width: 100px;
    height: 40px;
    opacity: 0.8;
}

/* extra info containers */
.flex-container {
    display: flex;
    flex-wrap: wrap;
    margin-left: 5%;
    margin-right: 5%;
}
.image-container {
    max-width: 40rem;
    flex-shrink: 1;
    margin: 0 auto;
}
.image-container img {
    max-width: 100%;
    height: auto;
}
.container {
    width: 50%;
    max-width: 1200px;
    flex-grow: 1;
}
.title {
    font-family: 'Electrolize', sans-serif;
    color: #ffffff;
    background-color: #CB0006;
    margin: 0px;
    padding: 3px;
}
button {
    font-family: 'Electrolize', sans-serif;
    color: #ffffff;
    background-color: #CB0006;
    padding: 10px;
    border-radius: 5px;
    margin: 0 5px;
    border: none;
    cursor: pointer;
}
button a {
    color: #ffffff;
}
.inverted-order {
    order: 0;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-left: 5%;
    margin-right: 5%;
    gap: 20px;
    margin-top: 30px;
}
.card {
    width: 400px;
    padding: 10px;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px 0px #000000;
}
.card img {
    width: 100%;
    border-radius: 5px;
}
.contact {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
}


.slide-track {
    width: 100%;
    display: flex;
    gap: 3em;
    overflow: hidden;
}

.slide img {
    width: 100px;
    height: 100px;
    animation: scroll 60s linear infinite;
}
  @keyframes scroll {
      0% {transform: translateX(0);}
      100% {transform: translatex(-1000%)}
  }
  
  .contact-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
footer {
    height: 290px;
    width: 100%;
    background-color: #272727;
    margin: 0;
    padding: 0;
    margin-top: 20px;
}
.footer {
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-left: 5%;
    margin-right: 5%;
    justify-content: space-between;
    color: #ffffff;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer a {
    color: #ffffff;
    text-decoration: underline;
}
@media screen and (max-width: 600px) {
    .navbar-buttons {
        display: none;
    }
    .navbar-button {
        display: block;
        margin: 5px 0;
    }
    .navbar-buttons.active {
        display: flex;
        margin-top: 70px;
        width: 100%;
        text-align: center;
    }
    .navbar-toggle {
        display: block;
        position: absolute;
        right: 5%;
        cursor: pointer;
        padding: 10px;
    }
    .flex-container {
        display: flex;
        width: 90%;
    }
    .image-container {
        max-width: 100%;
        flex-shrink: 1;
        margin: 0 auto;
    }
    .container {
        width: 100%;
        max-width: 1200px;
        flex-grow: 1;
    }
    .inverted-order {
        order: 1;
    }
    .landing {
        display: flex;
        background-color: rgb(223, 223, 223);
        height: 90vh;
    }
    .landing img:first-child {
        width: 100vw;
        object-fit: cover;
        object-position: left
    }
    .veb {
        position: absolute;
        bottom: 0%;
        right: 0%;
    
        width: 100px;
        height: 40px;
        opacity: 0.8;
    }
    .footer {
        display: flex;
        flex-wrap: wrap;
        padding-top: 20px;
        padding-bottom: 20px;
        margin-left: 5%;
        margin-right: 5%;
        color: #ffffff;
    }
    footer {
        height: 440px;
        width: 100%;
        background-color: #272727;
        margin: 0;
        padding: 0;
        margin-top: 20px;
    }
}