@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-family: 'Josefin Sans', sans-serif;
    background-image: url("/assets/bg-pattern-desktop.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

.de-red {
    color: hsl(0, 36%, 70%);
}

.fw-400 {
    font-weight: 400;
}

.soft-red {
    color: hsl(0, 93%, 68%);
}

.bg-pink {
    background-image: linear-gradient(135deg, hsl(0, 80%, 86%), hsl(0, 74%, 74%));    
}

.dark-gray-red {
    color: hsl(0, 6%, 24%);
    font-weight: 600;
}
h1 {
    font-size: 4rem!important;
}
h1, p {    
    font-family: 'Josefin Sans';
}
p {
    font-weight: 300;
}

button:hover {
    cursor: pointer;
    background-color: hsl(0, 93%, 68%);
    box-shadow: 0 0px 8px rgb(39, 39, 39);
    border: 0 solid none;
}
form {
    position: relative;
}
button {
    position: absolute;
    right: 0px;
}

form input {
    border: 1px solid hsl(0, 36%, 70%);
}

#texts {
    width: 35%;
}

.min-height {    
    min-height: 70vh;
}
#hero img   {
    position: relative;
}

/* Recheck */
form input:focus,
form input:active
{
    border: 2px solid hsl(0, 93%, 68%);
    outline: 0;
}

@media (max-width: 768px) {
    nav {
        padding: 10px 0!important;
    }
    #texts {
        width: 80%;
    }
    section {
        display: flex;
        flex-direction: column-reverse;
    }
    #hero img {
        width: 100%;
    }
    .navbar {
        display: none;
    }
    h1 {
        font-size: 3rem!important;
    }
    #texts-center {
        align-items: center;
        text-align: center;
    }
    input, 
    button {
        padding: 0.7rem 0!important;        
        font-size: 14px;
    }
}