.contacts a {
    display: flex;
    align-items: center; justify-content: center;
    font-size: 16px;
    width: fit-content; height: fit-content; gap: 5px;

    color: rgb(0, 75, 197);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.moreLinks a {
    font-size: 18px;

    color: rgb(0, 75, 197);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.contacts a:hover, .moreLinks a:hover {
    transform: scale(0.95);
}

.infosAndBtn p {
    font-size: 17px;
    max-width: 300px;

    color: rgb(255, 255, 255);
}