.container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 15px 0;
    flex-wrap: wrap;
}
.box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    font-size: 1.7rem;
    position: relative;
    width: 40%;
    margin: 15px;
    padding: 10px;
    border: 2px solid rgba(86, 175, 238, 0.8);
    box-shadow: -10px 5px 10px gray;
    background-color: #8dc6ef;
    border-radius: 20px;
    top: 0;
    overflow-wrap: anywhere;
    transition: top ease 0.5s;
}
.box:hover {
    top: -15px;
}
.box a {
    display: flex;
    align-items: center;
    color: black;
    text-decoration: none;
    width: 100%;
    height: 100%;
}