/* style.css */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

h1, h2 {
    color: #333;
}

.box {
    display: inline-block;
    width: 200px;
    height: 200px;
    margin: 20px;
    background-color: #4285F4;
    color: white;
    text-align: center;
    line-height: 200px;
    border-radius: 10px;
    font-size: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.box:hover {
    background-color: #357AE8;
}

nav {
    background-color: #333;
    padding: 10px;
    text-align: right;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 5px;
}

nav a:hover {
    background-color: #4285F4;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
}
