#container{
    width: 90%;
    background-color: #6e3c20;
    margin: auto;
    margin-top: 50px;
    position: relative;
    display: flex;
    border-radius: 40px;;
    padding: 10px;
}
.left-side, .right-side{
    position: relative;
    display: block;
    width: 48%;
    margin: auto;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.text{
    padding: 40px;
    background-color: #ffcbaa;
    margin-top: 5px;
    display: block;
    font-size: 45px;
    font-family: 'Cookie', cursive;
    border-radius: 40px;
}
.buttons{
    width: 80%;
    margin: auto;
    position: relative;
    display: flex;
    margin-bottom: 10px;
    padding: 10px;
}
.button{
    font-size: 80px;
    padding: 10px;
    border-radius: 20px;
    justify-content: space-between;
    background-color: #ffcbaa;
    margin: 5px auto;
    transition: 0.5s ease;
}
.button:hover{
    font-size:85px;
    transition: 0.1s ease;
    margin: 2px auto;
}
.button .fa-deviantart{
    color:#00e59b;
}
.button .fa-facebook{
    color:#3b5998;
}
.button .fa-instagram{
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.form-container{
    width:80%;
    margin: auto;
    background-color: #ffcbaa;
    padding: 40px;
    border-radius: 40px;
}
.form{
    position: relative;
    height: 50px;
    margin-top: 10px;
    overflow: hidden;
}
.form .form-control{
    width: 100%;
    height: 100%;
    padding-top: 20px;
    border: none;
    padding-left: 5px;
    font-size: 18px;
    background-color: #ffcbaa;
    font-weight: bold;
    color: #240f0c;
}
.form .label{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: left;
    pointer-events: none;
    border-bottom: 1px solid black;
}
.form .label::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 100%;
    width: 100%;
    border-bottom: 3px solid  #6e3c20;
    transform:translateX(-100%);
    transition: all 0.3s ease;
}
.content{
    position: absolute;
    bottom: 5px;
    left: 5px;
    transition: all 0.3s ease;
    font-size: 20px;
    font-weight: bold;
}
.form .form-control:focus + .label .content, 
.form .form-control:valid + .label .content{
    transform: translateY(-100%);
    font-size: 18px;
    color: #6e3c20;
}
.form .form-control:focus + .label::after,
.form .form-control:valid + .label::after{
    transform:translateX(0);
}

.submit{
    position: relative;
    width: 100%;
    min-height: 50px;
    margin-top: 10px;
    border: none;
    outline: none;
    font-size: 25px;
    font-weight: bold;
    transition: all 0.2s ease;
    background-color: #f8a26b;
    border-radius: 30px;
    font-family: 'Cookie', cursive;
}
.submit:hover{
    background-color: #6e3c20;
    color: #ffcbaa;
}
.form-container h3{
    font-size: 30px;
}
textarea{
    resize: none;
}
@media screen and (max-width: 1125px){
    #container{
        flex-direction: column;
        margin-top: 160px;
    }
    .left-side, .right-side{
        width: 90%;
    }
    .text{
        padding: 20px;
    }
    .right-side{
        margin-top: 20px;
    }
    .form-container{
        width: 100%
    }
    .contact-form{
        width: 90%;
    }
    .buttons{
        width: 100%;
    }
    .submit{
        font-size: 5vw;
    }
}
@media screen and (max-width: 768px){
    #container{
        margin-top: 50px;
    }
}


.footer{
    margin-top: 20px;
}