* {
    margin: 0;
    padding: 0;
}

body {
    background: #000000;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

.background-video {
    position: absolute;

    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.container {

    height: 100vh;


    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header {
    position: relative;
    padding: 20px 0;

    border-bottom: 1px solid rgba(123, 85, 0, 0.25);

    display: flex;
    align-items: center;
    justify-content: space-between;
    
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    z-index: 2;
}

.logo {
    width: 150px;
    height: 53px;
    object-fit: contain;
}

.button {
    padding: 16px 26px;
    border-radius: 314px;
    border: 2px solid #F9AF00;
    text-transform: uppercase;

    text-decoration: none;

    color: #F9AF00;

    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;

    transition: box-shadow 300ms ease-in-out;
}

.button:hover {
    box-shadow: 0px 0px 10px 0px #F9AF00;
}

footer {
    padding: 20px 0;

    border-top: 1px solid rgba(123, 85, 0, 0.25);

    text-align: center;
    margin-top: auto;
    
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

footer p {
    color: #7B5500;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

@media screen and (min-width: 769px) {
    .mobile {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 37px 18px 21px;
        margin: unset;
        width: unset;
    }

    footer {
        padding: 16px 18px 32px; 
    }
    
    .desktop {
        display: none;
    }
}