header {
    display:flex;
    flex-direction:row;
    justify-content:space-around;
    padding-top:20px;
}
a {
    text-decoration:none;
    color:black;
    font-size:30px;
}
main {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    height:calc(100vh - 120px);
}
#customize {
    max-width:50px;
}
#image {
    display:flex;
    justify-content: center;
    align-items:center;
}
#pages {
    display:flex;
    flex-direction:row;
    justify-content: center;
    align-items:center;
    gap:40px;
}
body {
    background: radial-gradient(rgb(255, 251, 8) 10%, rgb(25, 0, 255) 100%);
}
.animation {
    display: inline-block;
    transition: transform 0.3s;
}
.animation:hover {
    transform: scale(1.2);
    color: lightgreen;
}