body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: url('../images/background.jpg') no-repeat center center/cover;
                 /* linear-gradient(135deg, #74ebd5, #ACB6E5); */ 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 600px;
    text-align: center;
    overflow: hidden;
}

.header-container {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 40px;
animation: fadeIn 1.5s ease-in;
}

.logo {
width: 200px;
height: auto;
margin-bottom: 50px;
animation: fadeInDown 1.2s ease-out;
}

h1 {
    padding: 20px;
    font-size: 3em;
    margin: 0;
    background: linear-gradient(to right, #ff6a00, #ee0979);
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 50px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); 
}




.button-container {
    margin-top: 30px;
    display: flex;
    gap: 30px;
    animation: fadeInUp 1.5s ease-out;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    background: #fff;
    color: #333;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.btn:hover {
    background: #333;
    color: #fff;
    transform: translateY(-3px);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

footer {
    position: absolute;
    bottom: 20px;
    color: #fff;
    font-size: 0.9em;
}
@media (max-width: 768px) {
    body{
        height: 900px;
    }
}