body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f4f4;
    text-align: center;
}

h1 {
    background-color: #d32f2f;
    color: white;
    padding: 20px;
    margin: 0;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.menu a {
    width: 90%;
    max-width: 400px;
    border: 2px solid #d32f2f;
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.menu a:hover {
    transform: scale(1.05);
}

.menu img {
    width: 100%;
    height: auto;
    display: block;
}


.menu a {
    width: 100%;
    max-width: 300px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #d32f2f;
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.menu a:hover {
    transform: scale(1.05);
}

.menu img {
    width: 100%;
    height: auto;
    display: block;
}