body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to left, #d3d7db, #c7cfd2, #bcc7c6, #b5bfb9, #b1b5ab);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.header {
    position: fixed; /* Fixed positioning to stay at the top */
    top: 0; /* Align to the top of the viewport */
    width: 100%; /* Full width */
    text-align: center;
    background-color: #0ded41e2; /* Blue background color */
    padding: 20px;
    font-size: 23px;
}

.header h1, .header h2 {
    font-family: cursive; /* Cursive font style */
    color: black; /* Text color */
    margin: 5px 0; /* Adjusted margin */
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    max-width: 800px;
    margin-top: 80px; /* Adjusted margin to create space below the header */
}

.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 2rem;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.icon img {
    width: 120px;
    height: auto;
}

.icon p {
    margin-top: 10px;
}

.icon:hover {
    transform: scale(1.1);
    color: hsl(281, 77%, 39%);
}
.footer {
position: fixed;
bottom: 0;
width: 100%;
color: #fff;
text-align: center;
background-color: hsla(122, 93%, 52%, 0.886);
padding: 20px 0;
color: black;
}