@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;800&display=swap');

*{
    box-sizing: border-box;
}

body{
    margin:0;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    height: 100vh;
    background-color: #1a1a1a;
}

video{
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box{
    width: 65vw;
    position: relative;
    z-index: 2;
    color: white;
    padding: 5vh 5vw;
}

h1{
    margin: 0 0 1vh;
    font-size: 3vw;
    text-transform: uppercase;
}

p{
    font-size: 2vw;
}

ul{
    list-style: none;
    padding: 0;
}

ul li{
    font-size: 2vw;
    padding: 0.5vh 0;
}

ul li::before {
    content: '- ';
}

a {
    color: #b7b70a;
}

@media (orientation: portrait) {
    body{
        flex-direction: column;
    }

    video{
        position: relative;
        width: 100vw;
        height: 30vh;
    }

    .box{
        padding: 30px;
        width: 100%;
    }

    h1{
        font-size: 12vw;
        margin-bottom: 15px;
    }

    p{
        font-size: 5vw;
    }

    ul li{
        font-size: 5vw;
        padding: 0.5vh 0;
    }
}
