body{
    background-color: rgb(199, 235, 247);
    max-width: 100%;
}
.one{
    background-color: white;
    width: 30%;
    height: 250px;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 2px 3px 2px 3px grey;
    box-shadow: transparent;
    margin: 10px;
}
.one:hover{
    font-weight: bolder;
    color: white;
    background-color: rgb(77, 66, 66);
}
.two:hover{
    font-weight: bolder;
    color: white;
    background-color: rgb(77, 66, 66);
}
.three:hover{
    font-weight: bolder;
    color: white;
    background-color: rgb(77, 66, 66);
}
.two{
    background-color: white;
    width: 30%;
    height: 250px;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 2px 3px 2px 3px grey;
    box-shadow: transparent;
    margin: 10px;
}
.three{
    background-color: white;
    width: 30%;
    height: 250px;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 2px 3px 2px 3px grey;
    box-shadow: transparent;
    margin: 10px;
}
.three button{
    padding: 5px;
    width: 200px;
    margin: 10px;
    border: none;
    border-radius: 5px;
}
.three img{
    padding-right: 50px;
}
.three label{
    padding-right: 20px;
    text-align: center;
}
button:hover{
    text-decoration: underline;
    font-size: larger;
    font-weight: bold;
    cursor: pointer;
}
.top{
    display: block;
    text-align: center;
    padding-bottom: 100px;
    padding-top: 100px;
    font-family: sans-serif;
    color: rgb(22, 22, 99);
}
.body{
    width: 100%;
    overflow: auto;
    display: flex;
}
.header{
    width: 100%;
    overflow: auto;
    display: flex;
    background-color: darkblue;
}
.header h1{
    width: 30%;
    text-align: center;
    color: white;
}
.link{
    width: 70%;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.link a{
    margin-left: 30px;
    color: white;
    text-decoration: none;
}
.link a:hover{
    text-decoration: underline;
    padding: 10px;
    color: black;
    font-weight: bolder;
    background-color: white;
    font-family: serif;
    border-radius: 8px;
}
.link button{
    margin-left: 30px;
    padding: 15px;
    border-radius: 5px;
    border: none;
    background-color: palevioletred;
    color: white;
}
footer{
    color: white;
    background-color: darkblue;
    text-align: center;
    margin-top: 50px ;
    padding: 30px;
}
footer a{
    color: white;
    text-decoration: none;
}
footer a:hover{
    text-decoration: underline;
    padding: 10px;
    color: black;
    font-weight: bolder;
    background-color: white;
    font-family: serif;
    border-radius: 8px;
}