/* set general style */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200&family=Roboto:wght@300;400&display=swap');
a, a:hover, a:focus, a:visited, a:active {
    color: white;
    text-decoration: none;
    cursor: pointer;
}
body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: white;
    margin: 0;
    position: relative;
}

/* Styling for mobile devices first */

.background {
    background-image: url(./images/smartphoneBackground-min.jpg);
    background-size: cover;
    background-attachment: fixed;
}
header {
    width: 100vw;
    height: 3vh;
    position: absolute;
    z-index: 10;
    text-align: center;
    font-size: 10px;
    padding-top: 10px;
}
.text_side {
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding-left: 4%;
    padding-top: 3%;

}
.logo_container {
    width: 80px;
    height: auto;
}
.brand_logo {
    width: 100%;
    height: 100%;
}
h1 {
    font-size: 25px;
}
.white_arrow {
    width: 20px;
    margin-left: 10%;
}
.legals_paragraph {
    padding: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    line-height: 25px;
}
footer {
    width: 100%;
    bottom: 0;
    font-size: 8px;
    text-align: center;
}
/* Tablets */
@media only screen and (min-width : 481px) {
    .background {
        background-image: url(./images/tabletsBackground-min.jpg);
    }
}

/* Small screen, laptops */
@media only screen and (min-width : 769px) {
    .background{
        background-image: url(./images/1stbackground.jpg);
        background-position: center;
    }
}

/* Desktop, large screens */
@media only screen and (min-width : 1025px) {
    header {
        position: fixed;
        transform: rotate(-90deg);
        top: 50vh;
        left: 48vw;
        height: 2vh;
    }
    h1 {
        font-size: 55px;
    }
    .paragraph_container {
        margin-top: 25vh;
        display: flex;
        justify-content: center;
    }
    .legals_paragraph {
        z-index: 4;
        width:50%;
        margin-left: 25%;
        font-size: 20px;
        line-height: 35px;
    }
}


/* Extra large screens */
@media only screen and (min-width : 1201px) {
    header {
        font-size: 13px;
    }
    h1 {
        font-size:70px;
        letter-spacing: 5px;
    }
    .logo_container {
        width: 150px;
    }
    .main_title {
        width: 350px;
        margin-top: 10%;
        margin-bottom: 40%;
    }
    
    .text_side {
        position: fixed;
        top: 0;
        height: 100vh;
        width: 50vw;
    }
    .paragraph_container {
        margin-top: 28vh;
    }
}