* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: black;
    line-height: 1.5;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

header {
    background-image: url('/assets/max_header1.svg');
    background-repeat: no-repeat;
    width: 100vw;
    background-size: cover;
    background-position: bottom center;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 5vw;
    padding-bottom: 4vh;
    padding-right: 15vw;
}

.header-link {
    font-size: 5vh;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding-bottom: 6vw;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-info ul {
    list-style-type: none;
    color: white;
    text-align: end;
    font-weight: bold;
    font-size: 2.7vh;
}

.header-image img {
    height: 20vh;
}

main {
    flex: 1;
    text-align: center;
    padding: 10vh 1vh;
    background: white;
}

main h1 {
    font-size: 4vh;
    margin-bottom: 1vh;
}

main h2 {
    font-size: 10vh;
    margin-bottom: 1vh;
    color: black;
}

main .cta-button {
    background-color: #d91d5a;
    color: white;
    padding: 1vh 2vw;
    font-size: 2.5vh;
    text-decoration: none;
    border-radius: 50px;
}

footer {
    background-image: url('/assets/max_header2.svg');
    background-repeat: no-repeat;
    width: 100vw;
    background-size: cover;
    background-position: top left;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20vh;
    padding-left: 6vw;
    padding-bottom: 15vh;
    padding-right: 15vw;
}

footer .footer-links a {
    color: white;
    text-decoration: none;
    margin-right: 4vw;
    font-size: 3.5vh;
}

footer .footer-links a img {
    color: white;
    margin-right: .5vw;
    vertical-align: middle;
}

footer .footer-links .footer-img {
    width: 3.5vh;
}

.desktop-footer {
    display: block;
}

.mobile-footer {
    display:  none;
}

@media (min-width: 768px) and (max-width: 1300px) {
    body {
        overflow-x: hidden;
    }

    main h1 {
        font-size: 3vw;
    }

    main h2 {
        font-size: 6vw;
    }

    footer {
        padding-top: 14vh;
        flex-direction: column;
        text-align: right;
    }

    footer .desktop-footer {
        display: none;
    }

    .desktop-footer {
        display: none;
    }

    .mobile-footer {
        display:  block;
    }
    
    footer .mobile-footer ul li {
        list-style-type: none;
        color: white;
        text-align: start;
        font-weight: bold;
        padding-left: 15vw;
    }

    .header-link {
        display: none;
    }

    .header-info ul {
        display: none;
    }

    header {
        justify-content: center;
        padding-left: 0;
        padding-right: 0;
    }

    .header-image {
        text-align: center;
    }

    .header-image img {
        height: auto;
        max-width: 20vh;
        padding-bottom: 1vh;
    }

    main .cta-button {
        padding: 1.5vh 6vw;
        font-size: 2.5vh;
        
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    main h1 {
        font-size: 6vw;
    }

    main h2 {
        font-size: 14vw;
    }

    footer {
        padding-top: 14vh;
        flex-direction: column;
        text-align: right;
    }

    footer .desktop-footer {
        display: none;
    }

    .desktop-footer {
        display: none;
    }

    .mobile-footer {
        display:  block;
    }
    
    footer .mobile-footer ul li {
        list-style-type: none;
        color: white;
        text-align: start;
        font-weight: bold;
        padding-left: 15vw;
    }

    .header-link {
        display: none;
    }

    .header-info ul {
        display: none;
    }

    header {
        justify-content: center;
        padding-left: 0;
        padding-right: 0;
    }

    .header-image {
        text-align: center;
    }

    .header-image img {
        height: auto;
        max-width: 20vh;
        padding-bottom: 1vh;
    }

    main .cta-button {
        padding: 1.5vh 6vw;
        font-size: 2.5vh;
        
    }
}