body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    z-index: 1;
}

.gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, black, transparent);
    z-index: -1;
}

.content {
    max-width: 600px;
    padding: 20px;
    z-index: 2;
}

.age-restriction {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.age-icon {
    width: 100px; /* Twice the original size */
    height: 100px; /* Twice the original size */
    margin-bottom: 10px;
}

.timer {
    font-size: 24px;
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    justify-content: center;
}

.button {
    background-color: white;
    color: black;
    border: none;
    padding: 20px 40px; /* Twice the original size */
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px; /* Twice the original size */
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
}

.button:hover {
    background-color: #f0f0f0;
}

.background-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.background-image.active {
    opacity: 1;
}
