*{
    margin: 0;
    padding: 0;
}
.header{
    background-color: antiquewhite;
    text-align: center;
    padding-top: 25px;
}
.menu{
    /* background-color: aqua; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 10px;
    padding-bottom: 20px;
}
.menu a{
    width: 33.3%;
    height: 20px;
    color: black;
}
.menu a:hover{
    font-size: 20px;
    color: darkorchid;
}
.text{
    /* background-color: aquamarine; */
    text-align: center;
    margin-top: 10px;
}
.grid{
    /* background-color: blueviolet; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 10px;
}
.item{
    text-align: center;
    margin-top: 10px;
}
a{
    text-decoration: none;
}