*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
}


body {
    background: url(../texturas/blue-snow.png);
    background-repeat: repeat;
}

main {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

}

main .primero {
   margin: 10px 0 10px 0px;
   padding: 70px 5px;
    border: 1px solid white;
    background-color: rgb(244, 229, 213);
    width: 99%;
    max-width: 450px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
}

main .primero h1{
    font-family: "Great vibes";
    font-size: 50px;
}

main .primero span {
    font-family: "cormorant garamond";
    font-size: 25px;
    top: -20px;
}


main .primero p {
    font-family: "cormorant garamond";
    font-size: 20px;
    margin: 40px;
}

main .primero a{
    display: block;
    border: 1px solid white;
    background-color: white;
    color: black;
    width: 130px;
    height: 40px;
    padding: 10px 20px;
    border-radius: 10px;
}


main .primero a:hover{
    background-color: rgb(187, 174, 174);
    border: 1px solid transparent;

}



.due {
    background-color: url(../texturas/starring.png);
    background-repeat: repeat;
}

.primero .titulo1{
    font-family: "cormorant garamond";
    text-align: left;
}

.primero .titulo2 {
    font-family: "Great vibes";
    font-size: 30px;
    text-align: right;
}

.opciones {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 80%;
}

.espacio {
    height: 120px;
}

button {
    display: block;
    border: 1px solid white;
    background-color: white;
    color: black;
    width: 130px;
    height:40px;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Times New Roman', Times, serif;
}

button:hover{
    background-color: rgb(187, 174, 174);
    border: 1px solid transparent;
}

.primero .inicio {
    margin-top: 40px;
    display: block;
    border: 1px solid transparent;
    background-color: transparent;
    color: black;
    width: 200px;
    height: 40px;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Times New Roman', Times, serif;
    text-decoration: underline;
}

.primero .inicio:hover{
    color: rgb(134, 54, 54);
    border: 1px solid transparent;
    background-color: transparent;

}

