.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact h2 {
    margin: 0px;
}

.contact .social-icons {
    margin: 20px;
}

.contact p {
    margin-top: 20px;
}

.social-icons{
    display: flex;
    /* margin-left: auto; */
    /* margin-right: 0px; */
    text-align: center;
    justify-content: center;
}

.social-icons a{
    color: var(--sec-accent-color);
    margin: 0.5rem;
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.social-icons a:hover{
    transform: scale(1.2) !important;
}

.leetbtn{
    text-decoration: none;
    margin-top: 20px;
    border-radius: 7px;
    border: 2px solid var(--btn-color);
    padding: 2px 10px;
    color: white;
    background-color: var(--btn-color);
    /* box-shadow: 0px 0px 3px #0097b2; */
    font-weight: 500;
    transition: all 0.3s ease;
}

.leetbtn:hover{
    background-color: #00000000;
    color: var(--btn-color);
}