* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header h1 {
    font-size: 48px;
    color: black;
    font-weight: bold;
    margin: 50px 0;
    font-family: 'TT Norms Pro', sans-serif; /* Custom font if available */
}

.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.box {
    background-color: white;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border: 2px solid black;
    font-weight: bold;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

/* Animation when hovering over the box */
.box:hover {
    transform: scale(1.1); /* Slightly enlarge the button */
    background-color: #ddd; /* Change the background color */
}

/* Animation when not hovered over */
.box {
    transition: transform 0.3s ease, background-color 0.3s ease;
}
