html{
    /* background-color: rgb(72, 137, 199); */

    font-weight: 200;
}

body {
    justify-content: center;
    font-family: 'Roboto', sans-serif;

}

img {
    width:100px
} 

header{
    flex-direction: row;
    align-items: center;
    margin-bottom: 50px;
    justify-content: center;
    color: #f8fcff;
}

/* only apply this style to the image inside the header */
header img {
    margin-left: 30px;
}

.title{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.title h1  {
    margin-bottom: 3px;
}

.title h3 {
    margin:0;
    font-weight: 300;
}

.white-container{
 
    margin: 0px auto;
    width: 100%;
    max-width: 448px;
    border-radius: 4px;
}

.white-container h3{
    font-size: 15px;
    margin:0;
    margin-bottom: 50px;
}

.form-buttons{
    margin-top: 50px;
}

.section{
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section input {
    width: 250px;
}

.section select{
    width: 250px;
}


button{
    display:inline-block;
    padding:1em 3em;
    border:0.1em solid #f8fcff;
    margin:0 0.3em 0.3em 0;
    border-radius:0.12em;
    box-sizing: border-box;
    text-decoration:none;
    font-family:'Roboto',sans-serif;
    font-weight:300;
    color:#000000;
    text-align:center;
    transition: all 0.2s;
}

button:hover{
    color:#f8fcff;
    background-color:#000000;
}

@media all and (max-width:30em){
    button{
      
        margin:0.4em auto;
    }
}

input, select {
    padding:10px;
    border:0;
    box-shadow:0 0 15px 4px rgba(0,0,0,0.06);
    border-radius: 3px;
}

select {
    padding-right: 30px;
}

#result {
    font-weight: 300;
    margin-top: 50px;
}

#result span {
    font-weight: 900;
 /* margin-left: 8px; */
}