body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: #ddd;

    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("../img/fondo.png") center center / cover no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* CONTENEDOR TIPO FOLIO */
.container {
    max-width: 800px;
    width: 90%;
    padding: 50px;

    background: rgba(20, 20, 20, 0.65);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);

    border: 1px solid rgba(200, 169, 106, 0.2);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

/* TITULO */
h1 {
    font-family: "Playfair Display", serif;
    color: #c8a96a;
    margin-bottom: 30px;
    text-align: center;
}

/* SUBTITULOS */
h2 {
    margin-top: 25px;
    color: rgba(200, 169, 106, 0.9);
}

/* TEXTO */
p {
    font-weight: 300;
    font-size: 14px;
}

/* LINKS */
a {
    color: rgba(200, 169, 106, 0.7);
    text-decoration: none;
}

a:hover {
    color: #c8a96a;
}

.back-home {
    display: block;
    margin: 50px auto 0;
    width: fit-content;
    padding: 12px 30px;
    border: 1px solid rgba(200, 169, 106, 0.6);
    color: rgba(200, 169, 106, 0.9);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: 0.3s;
}

.back-home:hover {
    border-color: #c8a96a;
    color: #000;
    background: #c8a96a;
}

@media (max-width: 768px) {
    .container {
        padding: 25px;
    }
}
