*,
*:before,
*:after {
-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
        box-sizing: border-box;
}
body {
    margin: 0px; /*adds 0 space on all sides*/
    font-family: "Noto Sans", sans-serif;
}
html {
    scroll-behavior: smooth; /*adds smooth scrolling when using navigation instead if instant teleport :)*/
                            /* u can assign this ti personal element if choose ?? w3cschool :)*/
}

:root {
    --main-light-blue: #2770B4;
    --logo-blue: #0B4C90;
    --text-blue: #2770B4;
    --main-blue: #0C2642;
    --main-gray: #808080;
    --main-dark-gray: #454545;
    --main-light-gray: #f9f9f9;
    --main-white: #FFF;
    --main-black: #0c2642;
    --box-color: #0c2642;
}

html {
    scroll-behavior: smooth;
}

h1 {
    font-size: 26px;
    color: #0C2642;
    /* color: #000; */
    font-weight: 600;
    margin-top: 0;
    line-height: 30px;
    margin-bottom: 10px;
}


.mainContainer {
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    height: 100vh;
    background-color: var(--main-white);
}
/*
    IMAGE CONTAINER
*/
.imageContainer {
    position: relative;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    /* background-color: var(--main-light-gray); */
    background: url('../assets//img//5.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.inputs {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-top: 350px;
}

.input {
    all: unset;
    padding: 10px;
    margin: 5px 0;
    border-radius: 3px;
    border: 1px solid #808080;
    background-color: #FFF;
    box-shadow: 0 0 10px 0 rgba(0 0 0 / 10%);
}

.sendbutton {
    border-radius: 3px;
    background-color: #e78c5f;
    box-shadow: 0 0 10px 0 rgba(0 0 0 / 30%);
    padding: 10px 20px;
    margin: 10px 0;
    border: none;
    color: #FFF;
    font-weight: bold;
    cursor: pointer;
}
.sendbutton:hover {
    box-shadow: 0 0 10px 0 rgba(0 0 0 / 20%);
}

/* MODAL CONTAINER */

#modal {
    z-index: 3;
    display: none;
    padding-top: 100px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}
.modalWindow {
    position: relative;
    animation: animatetop 0.4s;
    border-radius: 4px;
    margin: auto;
    background-color: #fff;
    padding: 20px;
    outline: 0;
    width: 300px;
    height: 100px;
    box-shadow: 0 4px 10px 0 rgb(0 0 0 / 20%), 0 4px 20px 0 rgb(0 0 0 / 19%);
}
.closeModal {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: var(--logo-blue);
    color: var(--main-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0 4px 10px 0 rgb(0 0 0 / 20%), 0 4px 20px 0 rgb(0 0 0 / 19%);
}
#mailResult {
    text-align: center;
}
.closeModal:hover {
    box-shadow: none;
}