/* style.css */

/* Body styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* Light gray background */
    color: #333; /* Dark text color */
}

/* Header styles */
header {
    background-color: #007bff; /* Blue header background */
    color: #fff; /* White text color */
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 36px; /* Larger font size for header */
}

/* Main content styles */
main {
    padding: 20px;
}

/* Link styles */
.links-container {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.link-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1976d2; /* Aquamarine button background */
    color: #fff; /* White button text color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s; /* Transition effect */
}

.link-button:hover {
    background-color: #7fffd4; /* Lighter aquamarine on hover */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Soft highlight shimmer effect */
}

/* Footer styles */
footer {
    background-color: #343a40; /* Dark gray footer background */
    color: #fff; /* White text color */
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
}
