body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #032234;
    height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image {
    max-width: 50%;
    height: auto;
    opacity: 0; /* Set initial opacity to 0 */
    animation: fade-in 2s ease-in-out forwards; /* Apply fade-in animation */
}

.buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    opacity: 0; /* Set initial opacity to 0 */
    animation: fade-in 2s ease-in-out forwards; /* Apply fade-in animation */
}

.button {
    padding: 15px 30px;
    border-radius: 5px;
    background-color: #ffffff;
    margin: 0 10px;
    cursor: pointer;
    outline: none; /* Added this line to remove the outline */
    border: none; /* Added this line to remove the border */
    font-size: 1.2em; /* Adjust the font size as desired */
    font-family: Georgia, serif; /* Change the font to Georgia */
    color: black; /* Change the font color to black */
}

.button:hover {
    background-color: #83d1ff;
    cursor: pointer;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}