footer {
    padding: 10px 0;
    background: rgb(22, 22, 22);
    color: white;
    display: flex;
    justify-content: center;
    border-top: 2px solid #333;
}


footer div {
    text-align: center;
}

footer h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}

footer p {
    margin: 5px 0 15px 0;
    font-size: 18px;
    line-height: 1.4;
}

footer a {
    display: block;
    color: white;
    font-size: 18px;
    margin: 5px 0;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: #bbbbbb;
    transform: scale(1.03);
}

footer a:visited {
    color: white;
}

