@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@500&family=Raleway:ital,wght@1,600&family=Uchen&display=swap');

* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant SC';
    line-height: 1.6;
}

:root {
    --orange: #ED6B5B;
    --bg: #3A3E59;
    --yellow: #F9AC66;
    --pink: #C36B84;
    --white: white;
    --red: rgb(255, 33, 33);
}

#main_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--white);
    color: var(--bg);
    width: 100%;
    height: 100vh;
    padding: 5px;
}

#contact_form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--white);
    color: var(--bg);
    width: 90%;
    height: 80%;
    padding: 5px;
}
#onlyForm
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--white);
    color: var(--bg);
    width: 60%;
    height: 100%;
    padding: 5px;
    margin: 5px;
    box-shadow: 0px 15px 20px #000;
}
#onlyForm input
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    margin: 10px;
    width: 80%;
    outline: none;
    border-style: none;
    border-bottom: 2px solid black;
    font-size: large;
    font-weight: 600;
}
#onlyForm textarea
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    margin: 10px;
    width: 80%;
    outline: none;
    border: 2px solid var(--bg);
    font-size: large;
    font-weight: 600;
    resize: none;
}
.btn
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    margin: 10px;
    width: 80%;
    background-color: transparent;
    border: 2px solid var(--bg);
    color: var(--bg);
    font-size: large;
    font-weight: 600;
    cursor: pointer;
}
.btn:hover{
    transition: all 0.5s;
    background-color: var(--bg);
    color:var(--white);
    border: none;
}
#telephone {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 200px;
    height: 150px;
    position: absolute;
    z-index: 111;
    bottom: 0%;
    right: 10px;
    top: 70%;
    padding: 10px;
    margin: 30px;
}
#contact_img
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 200px;
    height: 150px;
}
#contact_img img{
    width: 100px;
    height: 100px;
    cursor: pointer;
}
#info
{
    display:none ;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width:200px;
    height: 120px;
    position: absolute;
    top: -100px;
    text-align: center;
    background: var(--bg);
    color: var(--white);
    border-radius: 10px;
}
#info a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 90%;
    height: 40%;
    border: 2px solid white;
    border-radius: 20px;
    background-color: white;
    font-weight: 600;
    font-size: large;
    text-align: center;
    color: black;
    text-decoration: none;
}


@media only screen and (max-width: 800px) and (min-width: 600px) 
{
    #onlyForm input {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 10px;
        margin: 10px;
        width: 80%;
        outline: none;
        border-style: none;
        border-bottom: 2px solid black;
        font-size: small;
        font-weight: 600;
    }
    .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 10px;
        margin: 10px;
        width: 80%;
        background-color: transparent;
        border: 2px solid var(--bg);
        color: var(--bg);
        font-size: small;
        font-weight: 600;
        cursor: pointer;
    }
    #contact_form h1{
        font-size: 20px;
    }
    #telephone {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100px;
        height: 150px;
        position: absolute;
        z-index: 111;
        bottom: 0%;
        right: 10px;
        top: 70%;
        padding: 10px;
        margin: 30px;
    }
    #contact_img img {
        width: 50px;
        height: 50px;
        cursor: pointer;
    }


}
@media only screen and (max-width: 599px) and (min-width: 320px) 
{

 #contact_form h1{
        font-size: 20px;
    }
    #onlyForm input {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 10px;
        margin: 10px;
        width: 80%;
        outline: none;
        border-style: none;
        border-bottom: 2px solid black;
        font-size: x-small;
        font-weight: 100;
    }
    #onlyForm textarea {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 10px;
        margin: 10px;
        width: 80%;
        outline: none;
        border: 2px solid var(--bg);
        font-size: x-small;
        font-weight: 600;
        resize: none;
    }
    .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 10px;
        margin: 10px;
        width: 80%;
        background-color: transparent;
        border: 2px solid var(--bg);
        color: var(--bg);
        font-size: small;
        font-weight: 600;
        cursor: pointer;
    }
    #telephone {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100px;
        height: 150px;
        position: absolute;
        z-index: 111;
        bottom: 0%;
        right: 10px;
        top: 70%;
        padding: 10px;
        margin: 30px;
    }
    #contact_img img {
        width: 50px;
        height: 50px;
        cursor: pointer;
    }
    #contact_img img {
        width: 50px;
        height: 50px;
        cursor: pointer;
    }
}
