/* General styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5; /* Light background for contrast */
    font-family: Arial, sans-serif;
}

/* Container for the whole content */
.container {
    text-align: center;
}

/* Center the logo */
.logo img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    max-height: 150px; /* Adjust based on your logo's size */
}

/* Container for the links */
.links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

/* Styles for the link boxes */
.link-box {
    background-color: rgb(57, 190, 239);
    color: black;
    text-decoration: none;
    padding: 20px 40px;
    margin: 0 20px;
    border-radius: 8px;
    font-size: 24px;
    transition: background-color 0.3s;
}

/* Hover effect for the link boxes */
.link-box:hover {
    background-color: rgb(40, 150, 200); /* Darker shade for hover */
}

/* Responsive styles */
@media (max-width: 768px) {
    .links {
        flex-direction: column;
    }

    .link-box {
        margin: 10px 0;
    }
}


