body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a0000, #330000);
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.title {
    font-size: 3rem;
    color: #ff3333;
    text-shadow: 0 0 15px #c90000;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
}


.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


button {
    background-color: #b30000;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 10px #ff0000;
}

button:hover {
    background-color: #ff0000;
    box-shadow: 0 0 20px #ff3333;
}


footer {
    position: absolute;
    bottom: 10px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaaaaa;
}
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


button {
    animation: fadeUp 0.7s ease-out forwards;
    opacity: 0;
}


.buttons button:nth-child(1) { animation-delay: 0.1s; }
.buttons button:nth-child(2) { animation-delay: 0.3s; }
.buttons button:nth-child(3) { animation-delay: 0.5s; }
button {
    background-color: #b30000;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px #ff0000;
}

button:hover {
    transform: scale(1.1); 
    background-color: #ff0000;
    box-shadow: 0 0 20px #ff3333;
}
header {
header {
    position: absolute;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: center; 
    
}
}
.logo {
      width: 350px;            
    margin-bottom: 40px;     
    display: block;
    margin-left: auto;
    margin-right: auto; 
    animation: fadeUp 0.8s ease-out;
}