body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    margin-top: 50px;
}

h1 {
    font-size: 24px;
    color: #333;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.option {
    width: 250px;
    height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    padding-bottom: 10px;
    transition: transform 0.2s, opacity 0.2s;
}

.option:hover {
    transform: scale(1.1);
    opacity: 0.8;
}
