
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Arial", sans-serif;
    overflow: hidden;
}

.landing-page {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(Asset/COVER.JPG);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    perspective: 1px;
}

.overlay {
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    z-index: 2;
}

h1 {
    font-size: 3em;
    font-family: "Anton", sans-serif;
    font-weight: 300;
    margin-bottom: 10px;
}

.enter-button {
    font-size: 1.5em;
    color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.enter-button:hover {
    background-color: #fbff00;
}

.landing-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transform: scale(1.2);
    z-index: 1;
    transition: transform 0.5s ease;
}

.landing-page:hover::before {
    transform: scale(1.3);
}

