body {
    color: rgb(40, 40, 40);
}

.container {
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    align-items: center;
}

a {
    color: rgb(40, 40, 40);
    text-decoration: none;
    font-size: 20px;
    transition: 250ms;

    &:hover{
        color: rgb(14, 68, 150);
        transform: scale(1.05);
    }
}
