.link-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80vw;
    margin: 0 auto;
}

.info-link {
    width: 20vw;
    height: 10vw;
    border: 2px solid rgb(66, 18, 112);
    padding: 2vw;
    color: rgb(66, 18, 112);
    margin: 2vw;
    font-size: clamp(8px, 2vw, 21px);
    box-sizing: border-box;
    text-align: center;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-items: center;
    font-weight: bolder;

    transition: all 0.3s ease-in-out
}

.info-link:hover {
    cursor: pointer;
    background-color: rgb(66, 18, 112);
    color: antiquewhite;
    transform: scale(1.1);
}

/* Responsive for tablets */
@media (max-width: 768px) {
    .info-link {
        width: 30vw;
        height: 20vw;
    }
}

button {
    background-color: rgb(255, 254, 252);
    color: rgb(66, 18, 112);
    border-radius: 15px;
    border-color: rgba(69, 3, 79, 0.653);
    padding: 10px;
    align-self: center;
    display: block;
    margin: 0 auto;
    font-weight: bold;
    border-width: 4px;
}

button:hover {
    border-color: rgb(66, 18, 112);
    cursor: pointer;
    background-color: rgb(242, 223, 255);
}