body{
    background: #eee;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
nav{
    width: 100%;
    height: 50px;
    background: teal;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}
nav i{
    margin: 12px;
    color: #fff;
    font-size: 20px;
}
nav h2{
    background: linear-gradient(25deg,#fff,rgb(201, 201, 201));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    text-align: center;
}
.box{
    margin: 15px;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    border-bottom: 2px solid rgb(168, 168, 168);
    border-right: 3px solid rgb(194, 194, 194);
    height: max-content;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.box h3{
    padding: 8px;
    margin-bottom: 10px;
    background: rgb(162, 64, 243);
    border-radius: 5px;
    color: #fff;
    text-align: center;
}
fieldset{
    width: 80%;
    height: max-content;
    border-radius: 5px;
    color: teal;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
legend{
    text-align: center;
}
fieldset a{
    margin: 5px;
    padding: 9px;
    text-decoration: none;
    background: #eee;
    color: teal;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.3s;
    border-top: 1px solid rgb(180, 180, 180);
    border-left: 1px solid rgb(180, 180, 180);
    border-right: 3px solid rgb(180, 180, 180);
    border-bottom: 2px solid rgb(180, 180, 180);
}
fieldset a:hover{
    border-top: 2px solid rgb(180, 180, 180);
    border-left: 3px solid rgb(180, 180, 180);
    border-right: 1px solid rgb(180, 180, 180);
    border-bottom: 1px solid rgb(180, 180, 180);
}
fieldset a i{
    margin: 5px;
    font-size: 32px;
    color: rgb(155, 155, 155);
}
@media(max-width:1000px){
    .box{
        width: 65%;
    }
}
@media(max-width:700px){
    .box{
        width: 80%;
    }
}
@media(max-width:632px){
    .box{
        width: 90%;
    }
}