
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%), url('https://66.media.tumblr.com/e3e91ae20021d6332930b273f8e2ca40/76392b0a543dbd36-f4/s500x750/2db01684243ad6f5f49882075943f24e9096291c.gif') center/cover no-repeat;
    color: white;
}

header {
    text-align: center;
    padding: 40px 20px;
}

@font-face {
    font-family: "Resident Evil 3";
    src: url("RE.otf") format('truetype');
}

header h1 {
    font-family: 'Resident Evil 3', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #161515 0%, #b0b0b0 50%, #808080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(54, 45, 45, 0.5));
    
}

.first-letter {
    background: linear-gradient(135deg, #2f2020 0%, #dc1f1f 50%, #f50505 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.2rem;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    gap: 20px;
}

.social-links {
    list-style: none;
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.15);
}

footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cafecito-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.mp-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
}
