main {
    width: 100%;
    display: flex;
    background-color: #F8F8F8;
    justify-content: center;
    flex-direction: column;
    max-width: 800px;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.content {
    width: 100%;
    gap: 5%;
    padding: 25px 5px;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.form {
    background-color: #121212;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap:20px;
    align-items: flex-end;
    flex-grow: 1;
    min-width: 250px;

}


.send-icon {
    width: 10px;
    margin-left: 5px;
}

.send {
    width: 70px;
    border-radius: 5px;
    padding: 5px;
    border: none;
    background-color: #00FFD1;
    font-family: 'Barlow Semi Condensed Semi Bold';
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
}

.send:hover {
    background-color: #A1FFEE;
}

label {
    color: white;
    font-family: 'Barlow Semi Condensed';
    text-transform: uppercase;
    font-size: 14px;
}

input {
    background-color: #363636;
    border: none;
    padding: 5px;
    border-radius: 5px;
    color: white;
    align-items: flex-start;
    outline: 2px solid #121212;;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-family: 'Barlow', sans-serif;
}

input:focus {
    outline: 2px solid rgba(0, 255, 209, 0.5);
}

textarea {
    background-color: #363636;
    border: none;
    padding: 5px;
    border-radius: 5px;
    color: white;
    align-items: flex-start;
    outline: 2px solid #121212;;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-family: 'Barlow', sans-serif;
}

textarea:focus {
    outline: 2px solid rgba(0, 255, 209, 0.5);
}

.form-section {
    display: flex;
    flex-direction: column;
    gap:10px;
    width: 100%;
}

.message {
    min-height: 150px;
    resize: none;
}

.socials-contact {
    display:flex;
    width: 100%;
    gap: 10px;
    margin: 10px 0;
}

.text {
    display:flex;
    flex-direction: column;
    padding: 10px;
    max-width: 300px;

}

p {
    margin: 10px 0;
    line-height: 1.5;
    flex-wrap: nowrap;

}


h1 {
    margin: 0;
    margin-top: 15px;
    font-size: 28px;

}

b {
    font-family: 'Barlow Medium';
}

li {
    padding: 5px 0;
}

@media only screen and (min-width:1000px) {


    .form {
        padding: 20px;
    }

    p {
        font-size: 18px;
    }

    input {
        font-size: 18px;
    }

    textarea {
        font-size: 18px;
    }

    label {
        font-size: 22px;
    }

    .send {
        font-size: 22px;
        width: 100px;
    }

    .send-icon {
        width: 15px;
    }

    h1 {
        font-size: 36px;
    }



    
    }
