@import url('https://fonts.googleapis.com/css2?family=Signika+Negative:wght@300&display=swap');

/* tools */
*{
    font-family: 'Signika Negative', sans-serif;
}

:root {
    --background-color: white;
    --main-color: rgb(234,155,75);
}

/* page */
html{
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* left and right section */
.left i{
    display: none;
    color: var(--background-color);
    font-size: 100px;
    margin-top: 50%;
    padding: 15%;
}

.right i{
    display: none;
    color: var(--background-color);
    font-size: 100px;
    margin-top: 50%;
    padding: 15%;
}



.left, .right {
    background-color: var(--main-color);
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* the middle section */

.middle {
    font-size: 30px;
    font-weight: 700;
    height: 100%;  
    width: 100%;
}

.header {
    padding-top: 5%;
}

form{
    padding-top: 30px;
    padding-bottom: 30px;
}

/* submit button */
button{
    border-radius: 4px;
    border-color: transparent;
    background-color: var(--main-color);
    color: white;
    font-size: 15px;
}

img{
    box-shadow: 10px 10px rgb(39, 39, 39);
}

/* title and description*/
p{
    font-size: 20px;
    font-weight: 400;
}

.bottom{
    position: absolute;
    top: 80%;
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
    text-align: center;
    left: 0;
    right: 0;
    display: column;
}

/* home button*/
a{
    text-decoration: none;
    border-radius: 4px;
    background-color: var(--main-color);
    color: white;
    font-size: 30px;
    padding: 1%;
}