#contact {
    width: 100%;
    height: calc(100vh - 50px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.contact-heading{
    margin: 10px;
}


.circle {
    width: 600px;
    height: 550px;
    border-radius: 50%;
    background-color: #f1f1f1;
    position: absolute;
    top: -10%;
    left: -10%;
    z-index: -1;
}
.contact-button {
    padding: 10px 20px;
    border: 2px solid black;
    background-color: hsla(50, 100%, 73%, 45%);
    color: black;
    /* border: none; */
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    display: block;
    margin: 10px;
}

.contact-button:hover {
    background-color: gray;
}

.contact-text{
    text-align: left;
    line-height: 1.8rem;
}

.socials {
    display: flex;
    /* justify-content: space-around; */ /* revert to this when using more that two socials */
    justify-content: left; 
    padding-left: 10px;
    gap: 40px;
    margin-top: 1.5rem;
    
}



.social-icon {
    width: 50px;
    height: 50px;
}

.footer-text {
    position: absolute;
    bottom: 0;
}