*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    margin: 0;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    background-color: #000;
}

header{
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;

    background: transparent;
}

nav{
    display: flex;
    align-items: center;
    gap: 45px;
}

nav a{
    text-decoration: none;
    color: white;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 15px;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
}

nav a:hover{
    color: #c98b35;
}

.hero{
    width: 100%;
    height: 100vh;

    background-image:
    linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)),
    url("Logo\ Nails\ Club2.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1f1b18;

    position: relative;

}

.contenido{
    color: white;
    text-align: left;
}

.contenido h1{
    font-size: 60px;
    margin-bottom: 15px;
}

.contenido p{
    font-size: 24px;
    margin-bottom: 20px;
}

.botones{
    position: absolute;
    top: 160px;
    left: 80px;

    display: flex;
    gap: 20px;
}

.btn{
    text-decoration: none;
    color: black;
    padding: 25px 35px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 10px;
}

.dorado{
    background-color: #c98b35;
}

.dorado2{
    background-color: #c98b35;
}

.btn:hover{
    opacity: 0.85;
}
/* ========================= */
/* VERSION PARA CELULARES */
/* ========================= */

@media (max-width: 768px){

    nav{
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
}

nav a{
    font-size: 10px;
    letter-spacing: 1px;
    white-space: nowrap;
}

    .botones{
        left: 30px;
        top: 130px;
    }

    .btn{
        padding: 18px 22px;
        font-size: 16px;
    }

    .hero{
        background-size: cover;
    }


}