/* styles2.css */

body {
    margin: auto;
    padding: 0;
    background-color: #fff; /* White background */
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    min-height: 100vh; /* 100% of viewport height */
}

.landing-container {
    text-align: center;
    max-width: 80%;
}

.logo {
    max-width: 100%;
    height: auto;
}
.logo:hover {
    transform: scale(1.05);
}

.enter-button {
    display: inline-block;
    margin-top: 5%; /* Adjust the distance between the image and the button */
    padding: 10px 20px;
    background-color: orange; /* Button background color */
    color: #fff; /* Button text color */
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Add a smooth transition effect */
}

.enter-button:hover {
    opacity: 80%;
}