@font-face {
    font-family: 'Minecraft';
    src: url('minecraft.ttf') format('truetype');
}

body {
    background: url('fondo.gif') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh; 
    padding-bottom: 1px; 
}

.container {
    display: flex;
    width: 80%;
    max-width: 1200px;
}

.left {
    flex: 1;
    padding: 20px;
}

.cloud {
    font-size: 3rem;
    font-weight: bolder;
}

.description {
    background: rgba(0, 0, 0, 0.6);
    padding: 13px;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    font-size: 1.8rem;
}

.minecraft-text {
    font-family: 'Minecraft', sans-serif;
    color: violet;
}

.right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon {
    width: 200px;
    height: auto;
    animation: bounce 2s infinite alternate ease-in-out;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-20px);
    }
}

.extra-content {
    width: 80%;
    max-width: 1200px;
    margin-top: 50px;
    font-size: 1.2rem;
    color: #ddd;
}

.extra-content p {
    margin: 20px 0;
}

.footer {
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    bottom: 0;
    margin-top: 50px;
}

.footer-left, .footer-center, .footer-right {
    text-align: center;
    flex: 1;
}

.footer-center img {
    width: 50px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer p {
    margin: 5px 0;
    font-size: 1rem;
}

.discord-icon {
    width: 40px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.discord-icon:hover {
    transform: scale(1.1);
}
