/* General styles */
body {
    margin: 0;
    padding: 0;
    background-color: #fbe9c6; 
    color: #000; /* White text */
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Centering container */
.container {
    text-align: center;
}

/* Logo styles */
.logo {
    max-width: 300px; /* Adjust size of the logo */
    margin-bottom: 30px;
}

/* Link styles */
.links a {
    display: block;
    margin: 10px 0;
    color: #ff6600; /* Orange links */
    text-decoration: none;
    font-size: 1.5rem; /* Larger font size for links */
    transition: color 0.3s;
}

.links a:hover {
    color: #fff; /* Change to white on hover */
}
