/* styles.css */

/* Apply styles to the entire page */
body {
    font-size: 16px;
    font-family: Helvetica;
    color: black;
    background-color: #f4f4f4;
}

ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creates 3 equal columns */
    gap: 20px;
    font-size: 24px;
    color: black;
}

p {
    color: black; /* Changes text color to red */
}

/* Style buttons */
.button-container button {
    font-size: 20px;
    margin: 10px;
    height: 60px;
    width: 300px;
    padding: 20px 40px;
    background-color: #25691c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button-container a {
    text-decoration: none;
}

/* Add hover effect */
.button-container button:hover {
    background-color: #0056b3;
}

.top-container topbutton {
    font-size: 16px;
    height: 10px;
    width: 20px;
    padding: 5px 5px;
    background-color: #b2b2b2;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.top-container a {
    text-decoration: none;
}

/* Add hover effect */
.top-container topbutton:hover {
    background-color: #0056b3;
}
