html body {
    background-color: #2E6EA0;
    font-family: 'Cookie', cursive;
    font-family: 'Roboto', sans-serif;
}

.box_card {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;

}

.card {
    width: 300px;
    padding: 20px;
    background-color: #ffffff;
}

.menu {
    list-style: none;
    padding: 0px;
}

.menu li {
    padding: 5px;
    width: 100%;
    height: 50px;
}

.menu li a {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: #E67F23;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
}

.menu li a:hover {
    background-color: rgb(34, 139, 34);
}

.foot{
    font-size: 15px;
}

.foot a{
    text-decoration: none;
    color: rgb(5, 68, 3);
    background-color: rgb(202, 202, 202);
    padding: 2px;
    border-radius: 6px;
}

.foot a:hover{
    color: #ffffff;
    background-color: rgb(5, 68, 3);
}