body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    text-align: center;
    padding: 20px;
}


h1 {
    color: orange;
    font-size: 2rem;
    margin-bottom: 20px;
}

.menu {
    display: inline-block;
}

.link {
    display: block;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
    margin: 10px 0;
    padding: 10px 20px;
    border-radius: 5px;
    width: 100px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.link1 {
    background-color: yellow;
}

.link2 {
    background-color: yellow;
}

.link3 {
    background-color: yellow;
}

.link:hover {
    background-color: rgb(0, 225, 255);
    color: white;
}