body{
    font-family: "Barlow", sans-serif;
    background-image: url('img/bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    margin: 0;
}

main{
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 200px;
}

footer{
    background-color: #13189C;
    padding: 30px 0;
}

h1{
    font-size: 35px;
    line-height: 42px;
    margin-top: 0;
}

p{
    font-size: 18px;
    line-height: 22px;
}

video{
    margin-top: 50px;
    border-radius: 20px;
    cursor: pointer;
}

a{
    text-decoration: none;
    color: white;
}

ul{
    display: flex;
    gap: 20px;
    list-style-type: none;
    font-weight: 600;
    color: white;
}

.container{
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
}

/*Mobile*/

@media only screen and (max-width: 1024px){
    main{
        padding: 30px;
    }

    .container{
        flex-direction: column;
    }

    ul{
        flex-direction: column;
    }

}