.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    background: linear-gradient(to bottom, black, rgb(9, 9, 12));
    padding-top: 50px;
    padding-bottom: 100px;
}

.contact-heading {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 25px;
}

.contact-description {
    color:rgb(198, 180, 180);
    margin-bottom: 80px;
    font-size: 19px;
}

.contact-me-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: rgb(23, 23, 33);
    padding: 30px;
    border-radius: 15px;
    box-shadow: rgba(23, 92, 230, 0.15) 0px 4px 24px;
}

.email-me-header {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}


.contact-me-box input {
    width: 700px;
    color: white;
    font-size: 17px;
    background-color: rgb(23, 23, 33);
    border: 1px solid rgb(182, 180, 180);
    padding: 10px 20px;
    border-radius: 10px;
    height: 30px;
}

.message-input-box {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif ;
    height: 200px;
    color: white;
    font-size: 17px;
    background-color: rgb(23, 23, 33);
    border: 1px solid rgb(182, 180, 180);
    padding: 10px 20px;
    border-radius: 10px;
}

.send-button {
    color: white;
    margin-top: 25px;
    font-size: 22px;
    padding: 10px 0px;
    background-color: black;
    border: 0.1px solid rgb(43, 255, 204);
    border-radius: 10px;
    box-shadow: rgba(99, 232, 197, 0.15) 2px 4px 24px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.8s ease;
}



.send-button:hover {
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .contact-me-box input {
        width: 280px;
    }
}
