html, body {
    max-width: 100%;
    overflow-X: hidden;
}

* {
    font-family: 'Syne' , sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url(../images/star.jpg);
    color: #FFFF;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.section-title {
    text-align: center;
    font-size: 35px;
    margin-bottom: 20px;
}

.contact-page {
    max-width: 600px;
    width: 100%;
    padding: 2rem;
}

.contact-form {
    display: grid;
    grid-gap: 1rem;
}

.contact-card {
    position: relative;
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
}

.contact-input{
    width: 100%;
    height: 100%;
    background: none;
    border: 2px solid #FFFF;
    padding: .5rem 8rem;
    border-radius: 5px;
}

.contact-label {
    color: #2DA653;
    position: absolute;
    top: -16px;
    left: 16px;
    font-size: .813rem;
    padding: 8px;
    pointer-events: none;
    transition: 0.3s ease-out;
}

.contact-card.contact-area-textarea {
    height: 100px;
    resize: none;
}

.button {
    display: inline-flex;
    justify-content: center;
    margin-top: 2rems;
    background-color: #ffffff;
    color: #FFFF;
    font-weight: 700;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.button:hover {
    transform: scale(1.02);
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    align-items: center;
}

.social-icons a {
    margin: 0 5px;
}

.social-icons i {
    display: inline-flex;
    height: 40px;
    width: 40px;
    background: #FFF;
    color: #000000;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.social-icons i:hover{
    background: #FF0000;
    color: #FFFF;
    transform: scale(1.02);
}