body{
    background-color: #E4B233;
    padding: 40px 0;
}
h1{
    text-align: center;
}
a{
    text-decoration: none;
    color: black;
    text-align: center;
    padding: 10px 0;
}
.p{
    font-size: 22px;
    text-align: center;
    padding: 35px 0;
}
.a{
    background-color: rgb(72, 255, 0);
    transition: all 5s;
    border-radius: 7px;
}
.a0{
    background-color: rgb(255, 0, 0);
    transition: all 5s;
    border-radius: 7px;
}
.a:hover{
    transform: scale(1.5);
    background-color: rgb(255, 0, 0);
}
.a0:hover{
    transform: scale(1.5);
    background-color: rgb(72, 255, 0);
}
div{
    display: flex;
    justify-content: space-evenly;
    flex-wrap:wrap ;
}
.span1234{
    font-size: 27px;
}