body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
    font-family: "Montserrat", sans-serif;
    background-color: #f7f7f7;
}

.description {
    color: white;
    margin-bottom: 40px;
    background-color: rgb(3, 3, 175);
    width: 100%;
    height: 100%;
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    border-radius: 5px;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 5px;
}

.card a {
    text-decoration: none;
    font-size: 22px;
    color: black;
    transition: color 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    background-color: rgba(3, 3, 175, 0.8);
}

.card:hover a {
    color: white;
}