@import "mobile.css";
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #3498db;
    --background-color: #101010;
    --text-color: #FEEFDD;
    --telegram-color: #0088cc;
}

*{
    font-family: "Poppins";
    margin: 0;
    padding: 0;
}

body{
    background-color: var(--background-color);
    color: var(--text-color);
}

#hero{    
    display: flex;
    justify-content: center;
    margin-top: 50px;
    font-size: 1.2rem;
    font-style: italic;
}

#container{
    width: 85vw;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#features{
    margin-top: 130px;
}

#features h1{
    font-size: clamp(2.3rem, 9vw, 50px); /* 2.3 rem*/
    line-height: 120%;
}

#features span{
    color: #EA2129;
}

#features p{
    width: clamp(auto, 30vw, 400px); /* 30vw */
    margin-top: 10px;
    margin-bottom: 10px;
    opacity: 0.8;
    font-weight: 300;
    font-size: clamp(1.15rem, 2vw, 22px); /* 1.15rem */
}

#pricing a{
    text-decoration: none;
}

#pricing button{
    background-color: black;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    color: white;
    font-weight: 500;
    font-size: clamp(0.9rem, 0.7vw, 2rem); /* 1rem */
}

#pricing button:hover{
    cursor: pointer;
}

#pricing button img{
    width: 150px;
}

#pricing button p{
    margin-right: 20px;
}

#how{
    margin-top: 70px;
    height: 800px;
}

footer{
    margin: 30px auto 30px auto;
    text-align: center;
}

footer a{
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
}

footer span{
    color: #EA2129;
}

/* Pro obrazovky nad 1364px */
@media only screen and (min-width: 1364px) {
    #container{
        width: 80vw;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        
    }

    #features{
        max-width: 1200px;
        margin-top: 0px;
    }

    #features h1{
        font-size: 2.6vw;
        line-height: 120%;
        font-weight: 750;
    }

    #features p{
        max-width: 750px;
        margin-top: 20px;
        margin-bottom: 10px;
        opacity: 0.8;
        font-weight: 400;
        font-size: clamp(1.15rem, 2vw, 22px); /* 1.15rem */
    }

    #pricing button img{
        width: 150px;
    }
 }

 @media only screen and (min-width: 1400px) {
    #features h1{
        font-size: 2.8vw;
        line-height: 120%;
        font-weight: 750;
    }

    #container{
        width: 85vw;
        margin-top: 60px;
    }

    #how{
        margin-top: 0px;
        height: 800px;
    }
 }