*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    color: #EDF5E1;
    background-color: #5CDB95;
}
h1, h2, h3 {
    font-family: 'Segoe UI', sans-serif;
    line-height: 180%;
}
h1 {font-size: 40px;}
h2 {font-size: 32px;}
h3 {font-size: 24px;}
p, li {
    font-family: 'Roboto', sans-serif;
    line-height: 180%;
}
ul{
    list-style-type: circle;
}

.navbar{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    position: fixed;
    background-color: #8EE4AF;
    color: #05386B;
}
.name-nav {flex: 7;}
.buttons-nav{
    flex: 2;
    display: flex;
    justify-content: space-evenly;
}
button, .submit-btn{
    padding: 14px 24px;
    border-radius: 4px;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-weight: bolder;
    background-color: #EDF5E1;
    color:#05386B;
}
button:hover, .submit-btn:hover{
    background-color:#05386B;
    color: #EDF5E1;
}
.intro{
    padding-top: 14%;
    text-align: center;
}
.contact-form{
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: bolder;
    color: #05386B;
}
.submit-btn{
    padding: 14px 70px;
}
label, input{
    display: block;
}
textarea{
    padding: 0 33px 40px 0;
    height: 100%;
    overflow: auto;
    resize: none;
}
.footer {
    margin-top: 3%;
    background-color: #05386B;
    text-align: center;
}

