* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    width: 100vw;
    height: 100vh;
}

.container {
    width: 390px;
    height: 844px;
}

header {
    background-image: url('../img/Rectangle.svg');
}

.stains {
    display: flex;
    position: absolute;
}


.nav {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    position: relative;

}

.nav button {
    width: 96px;
    height: 24px;
    background-color: #fff;
    border-radius: 12px;
    border: none;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
}

.texts-imgs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;

}

.texts-imgs h1 {
    font-size: 24px;
    text-align: center;
    color: #00252e;
    line-height: 36px;
    margin-top: 101px;
}

.texts-imgs p {
    font-size: 16px;
    line-height: 24px;
    color: #00252e;
    text-align: center;
    margin-top: 24px;
}

.texts-imgs button {
    width: 240px;
    height: 40px;
    background-color: #ff52c1;
    border-radius: 20px;
    border: none;
    color: #fff;
    margin-top: 32px;
    margin-left: 40px;
    
}

.texts-imgs img {
    margin-top: 56px;
}

@media (min-width: 768px) {

    .container {
        width: 100vw;
        height: 844px;
    }


    .texts-imgs {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: relative;

    }
}

@media (min-width: 1280px) {
    .container {
        width: 390px;
        height: 721px;
    }

    .stains {
        display: none;
    }


    .nav {
        display: flex;
        justify-content: space-between;
        padding: 20px;
        position: relative;
    }

    .texts-header {
        display: flex;
        flex-direction: column;
        
    }

    .nav button {
        width: 200px;
        height: 48px;
        background-color: #fff;
        border-radius: 24px;
        font-size: 15px;
    }

    .texts-imgs {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        position: relative;
        gap: 70px;
    }

    .texts-imgs h1 {
        font-size: 40px;
        text-align:start;
        line-height: 60px;
    }

    .texts-imgs p {
        font-size: 18px;
        line-height: 27px;
        color: #00252e;
        text-align: start;
        
    }

    .texts-imgs button {
        width: 280px;
        height: 56px;
        border-radius: 28px;
        margin-top: 32px;
    }

    .texts-imgs img {
        width: 680px;
        height: 482px;
        margin-bottom:72px ;
    }
}


@media (min-width: 1440px) {

    .container {
        width: 390px;
        height: 721px;
    }

    .stains {
        display: none;
    }


    .nav {
        display: flex;
        justify-content: space-between;
        padding: 20px;
        position: relative;
    }

    .texts-header {
        display: flex;
        flex-direction: column;
        
    }

    .nav button {
        width: 200px;
        height: 48px;
        background-color: #fff;
        border-radius: 24px;
        font-size: 15px;
    }

    button::before,
    button::after{
       content: '';
       
       height: 3px;
       width: 0;
       background-color: orangered;
       transition: .5s ease;
   }
   button::after{
       left: 0;
       bottom: -10px;
   }
   button::before{
       right: 0;
       top: -10px;
   }

   button:hover::after,
   button:hover::before{
       width: 100%;
   }

    .texts-imgs {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        position: relative;
        gap: 70px;
    }

    .texts-imgs h1 {
        font-size: 40px;
        text-align:start;
        line-height: 60px;
    }

    .texts-imgs p {
        font-size: 18px;
        line-height: 27px;
        color: #00252e;
        text-align: start;
        
    }

    .texts-imgs button {
        width: 280px;
        height: 56px;
        border-radius: 28px;
        margin-top: 32px;
    }

    .texts-imgs img {
        width: 680px;
        height: 482px;
        margin-bottom:72px ;
    }


}