:root {
    --verde-oscuro: #1d351d;
    --verde-medio:  #325632;

    --rojo-oscuro:  #8b181d;
    --rojo-profundo: #6f0f11;

    --beige-claro:  #fff5eb;
    --beige-oscuro:  #c2a78c;
}

@font-face {
    font-family: "Amore Christmas";
    src: url("Archives/Amore\ Christmas.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

.border {
    width: 100%;
    background: url(Archives/line.gif);
    background-repeat: repeat-x;
    height: 20px;
    margin: 10% 0;
}

.title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    font-family: "Amore Christmas";
    color: #ac413f;
    letter-spacing: 5px;
}

body {
    background: url(Archives/bcc.png);
    animation: moverFondo 30s linear infinite;
}

@keyframes moverFondo {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50% 50%;
    }
}

.box {
    background-image: url(Archives/bc-lines.png);
    width: 80%;
    margin: auto;
    border: 5px solid var(--verde-medio);
}

.gifts, .title  {
    background: var(--beige-claro);
    margin: 5%;
    padding: 5%;
    border: 2px dashed var(--verde-oscuro);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

a {
    color: var(--rojo-oscuro);
    font-family: monospace;
}

.box-box {
    width: 80%;
    margin: auto;
    border: 5px solid var(--verde-medio);
    background: url(Archives/bc-lines.png);
    overflow: hidden;
}

.letter-box {
    position: relative;
    height: 220px;
    background: var(--beige-claro);
    margin: 5%;
    margin-top: 5%;
    overflow: hidden;
    border: 2px dashed var(--verde-oscuro);
}

.images {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
}

.images a {
    color: var(--rojo-oscuro);
    margin-top: 5px;

    border-radius: 10px;
}

.solapa {
    position: relative;
}

.solapa::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 2;
    border-top: 150px solid var(--verde-medio);
    border-right: 180px solid transparent;
    border-left: 180px solid transparent;
    transform-origin: top;
    transition: all 0.5s ease-in-out 0.7s;
    border-radius: 10px;
}

.mc {
    margin: auto;
    display: block;
    margin-top: 5%;
}

.h-title {
    font-family: "Amore Christmas";
    color: var(--rojo-oscuro);
    text-align: center;
    letter-spacing: 5px;
    margin: 0;
}

p {
    font-family: monospace;
    color: var(--rojo-oscuro);
    text-align: justify;
}