@font-face {
    font-family: "Caudex-Regular";
    src: url("./fonts/Caudex-Regular.ttf");
}

@font-face {
    font-family: 'NITEMARE';
    src: url('./fonts/NITEMARE.ttf') ;
}

body {
    font-family: Caudex-Regular; 
    font-size: 18px;
    margin: 0;
    display: flex; 
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    background-color: #111111;
    color: #ffffff;
    padding-top: 50px;
    background-image: url(/images/bgpurple.jpeg);
    cursor: url(/images/cursorcat.gif), auto;
}

h1 {
    font-size: 30px;
    color: #ebebeb; 
    font-family: NITEMARE;
    border-bottom: 1px solid #5b1c9f;
    padding-bottom: 5px;
    margin-top: 0;
    margin-bottom: 15px;
}
span {
    color: #d10000;
}
.content-container {
    display: flex;
    flex-direction: row;
    width: 750px;
    background-image: url(/images/heartbg.webp);
    border-radius: 5px;
    padding: 25px;
    gap: 25px; 

    @media (max-width: 768px) {
        flex-direction: column;
        width: 90%;
        padding: 15px;
        gap: 15px;
    }
}
.image-column {
    flex: 0 0 200px; 
    
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.image-column figure {
    margin: 0;
    padding: 0;
    max-width: 100%;
    text-align: center;
}

.image-column img {
    width: 100%;
    height: auto;
    border: 2px solid #570aaa; 
    object-fit: cover;
}

.image-column figcaption {
    display: block; 
    margin-top: 8px;
    padding: 5.5px;
    color: #DDDDDD;
    background-color: #111111;
    border: 2px solid #570aaa;
    border-radius: 5px;
    font-size: 17px;
    line-height: 1.3;
}

.text-column {
    background-color: #111111ec;
    flex: 1;
    font-size: 1em;
    line-height: 1.5;
    
    padding: 15px;
}


.corner-button{
    display: block; 
    width: 50%; 
    margin: 150px auto 0 auto; 
    text-align: center;
    padding: 10px 15px;
    background-color: #000000; 
    color: #DDDDDD;
    text-decoration: none;
    border: 2px solid #570aaa; 
    border-radius: 5px;
    font-family: Caudex-Regular;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.1s;
    box-sizing: border-box; 
    cursor: url(/images/cursorcat.gif), auto;
}

.corner-button:hover {
    color: #DDDDDD; 
    background-color: #2b0a3a;
}

.image-column {
    flex: 0 0 200px; 
    display: flex;
    flex-direction: column; /* Hacemos que la columna sea vertical */
    align-items: center; /* Centra la figura y el botón horizontalmente */
}