* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #2889FF;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
    min-height: 90vh;
    background-image: url("img/bg.svg");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
    padding-top: 10vw;
}

img {
    display: block;
    max-width: 100%;
}
.top .logo{
    width: 36%;
}
.t-s{
    text-shadow:
            -2px -2px 0 black,
            0   -2px 0 black,
            2px -2px 0 black,
            2px  0   0 black,
            2px  2px 0 black,
            0    2px 0 black,
            -2px  2px 0 black,
            -2px  0   0 black;
}
.top-text{
    font-family: "Alegreya Sans", sans-serif;
    font-weight: 900;
    flex: 1;
    color: white;
    margin: 0;
    font-size: 9vw;
    text-transform: uppercase;
    line-height: 0.9;
    text-align: center;
}

.top {
    padding: 0 4%;
    display: flex;
    gap: 1%;
    align-items: center;
}

.app {
    position: relative;
    padding: 7vw 6vw 0 5vw;
}

.app img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 10;
}

.app-text {
    background: rgba(0, 0, 0, 0.5);
    padding: 3%;
    text-align: center;
    font-size: 6vw;
    line-height: 1.2;
    position: absolute;
    top: 9vw;
    left: 0;
    width: 100%;
    z-index: 20;
    font-family: "Alegreya Sans SC", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}
video{
    width: 100%;
    border-radius: 10vw;
}
.app-text p{
    color: white;
    margin: 0;
}
.app-text p span{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    color: #ffb724;
}
.bottom{
    width: 100%;
    background-image: url("img/bg-bottom.svg");
    z-index: 20;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 11%;
    display: flex;
    flex-direction: column;
    margin-top: -30vw;
    position: sticky;
    bottom: 0;
}
.bottom-btn{
    padding: 0 5%;
}
button{
    border: none;
    color: white;
    height: 15vw;
    width: 100%;
    background-color: transparent;
    background-image: url("img/btn.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    padding: 0 5%;
    justify-content: space-evenly;
    font-family: "Alegreya Sans", sans-serif;
    font-weight: 900;
    font-size: 5.5vw;
    align-items: center;
    text-transform: uppercase;
    gap: 2%;
    cursor: pointer;
}
button img{
    width: 8%;
}
img.right{
    width: 30%;
    margin-right: 10%;
    align-self: flex-end;
}
img.left{
    width: 44%;
}