*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: space-between;
    text-rendering: optimizeSpeed;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: #003B2A;
}

.bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

header {
    padding: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
}

header img {
    height: 55px;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

h1 {
    font-size: 88px;
    line-height: 1.05;
    font-weight: 400;
    font-family: "Bodoni 72 Oldstyle", serif;
    letter-spacing: -1px;
    margin-bottom: 0;
    padding: 0;
}

p {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

footer {
    background: #003F2D;
    padding: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

footer div {
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
}

@media (max-width:768px){

    header img {
        height: 45px;
    }

    h1 {
        font-size: 40px;
    }

    footer {
        padding: 40px 30px;
    }

    footer div {
        gap: 20px;
    }

    footer p {
        font-size: 12px;
    }

    footer img {
        height: 20px;
    }

    footer svg {
        width: 20px;
        height: 20px;
    }

}