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

body {
    background-image: url('AWAEASY.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    height: 120vh;
    height: 100dvh;
    overflow: hidden;

    display: flex;
    justify-content: center;

    align-items: center;
    padding-bottom: 100px;

    font-family: Arial, sans-serif;
}

.button-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;

    background-color: rgba(215, 210, 203, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.7);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 600px) {

    body {
        padding-top: 60px;
    }

    .button-container {
        flex-direction: column;
        width: 85%;
        max-width: 320px;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 1rem;
    }
}
@media (max-height: 500px) and (orientation: landscape) {

    body {
        padding-bottom: 20px;
    }

    .button-container {
        flex-direction: row;
        width: auto;
    }

    .btn {
        width: auto;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}