* {
    border-radius: 3px;
    transition: background-color 1s, box-shadow 1.5s;
}
html {

}
body {

    height: 100vh;
    background-color: #f6f0e6;
    overflow-y: hidden;

}
main {
    background-color: #123456;
    height: 50%;
    width: 33%;
    margin: 10% auto;
}
main header {

    height: 15%;

}
main header .headerDiv {

    padding: 3% 0;
    background-color: #f6f0e6;
    border-radius: 0;
    text-align: center;
    box-shadow: 2px 2px 2px grey, -2px -2px 2px grey;
    text-shadow: 1px 1px 1px mintcream, -1px -1px 1px mintcream;
    font-weight: bold;
    font-size: 105%;
    color: #123456;

}

main header .imageDiv {
    height: 25%;
    width: 25%;
}
main header .imageDiv img {
    height: 100%;
    width: 100%;
    border-radius: 5px;
}
main section {

    height: 70%;
    padding: 7.5% 0;

}
main section .sectionDiv {

    width: 100%;
    height: 100%;

}
main section .sectionDiv .inputDiv {

    width: 75%;
    margin: 2% auto;
    border-radius: 2px;
}
main section .sectionDiv .inputDiv .form-control {
    text-align: center;
    background-color: mintcream;
    padding: 5.5% 0;
    border-radius: 2px;
}
main section .sectionDiv .inputDiv .form-control:hover {

    box-shadow: 2px 2px 2px grey, -2px -2px 2px grey;

}
main section .sectionDiv .buttonDiv {

    display: block;
    background-color: mintcream;
    padding: 2% 0;
    text-align: center;
    border-radius: 2px;
    font-weight: bold;
    cursor: pointer;
    width: 75%;
    margin: 0 auto;
}

main section .sectionDiv .buttonDiv:hover {

    background-color: #123456;
    color: mintcream;
    box-shadow: 2px 2px 2px lightgrey, -2px -2px 2px lightgrey;

}
main footer {
    height: 15%;
    background-color: #f6f0e6;
    box-shadow: 2px 2px 2px grey, -2px -2px 2px grey;
}