* {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* FONTS */
@font-face {
    font-family: 'ComfortaaRegular';
    src: url('fonts/comfortaa-regular-webfont.woff2') format('woff2'),
         url('fonts/comfortaa-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'ComfortaaBold';
    src: url('fonts/comfortaa-bold-webfont.woff2') format('woff2'),
         url('fonts/comfortaa-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'ComfortaaLight';
    src: url('fonts/comfortaa-light-webfont.woff2') format('woff2'),
         url('fonts/comfortaa-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
/* FONTS */  

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
    overflow-x: hidden;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}
  
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-top: 0;      
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
    font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}
  

.row {
    margin-right: -15px;
    margin-left: -15px;
}


.header {
    top: 0;
    display: block;
    max-width: 100%;
    padding-top: .5%;
    padding-bottom: 1%;
    margin-right: auto;
    margin-left: auto;
    background-color: #fe9ea0;

    box-shadow: 0px 3px 8px #886365;
    z-index: 3;
}

.subheader {
    top: 0;
    max-width: 100%;
    background-color: #ececec;

    box-shadow: 0px 3px 8px #886365 inset;
    z-index: 1;
}  

.subtitle {
    top: 0;
    display: block;
    width: 70%;
    padding-top: .75%;
    padding-bottom: .15%;

    margin-right: auto;
    margin-left: auto;
    background-color: #BF6365;
    
    color: #ececec;
    font-family: ComfortaaLight;
    font-weight: lighter;
    text-align: center;

    box-shadow: 0px 3px 8px #886365 inset, 0px 2px 5px #886365;
    z-index: 2;

    border-radius: 0 0 15px 15px;
}

.test-div {
    padding-top: .25%;
    margin-right: 5%;
    z-index: 2;
    text-align: right;
}

.test-button {
    width: 100px;
    height: 30px;
    margin-top: 1%;
    background-color: #FFDE96;
    border-style: none;
    
    color: #6c6c6c;
    font-family: ComfortaaBold;
    text-align: center;
    font-size: 90%;
    
    border-radius: 10px 10px 0 0;
    border-color: #FFDE96;
    
    box-shadow: 0px -1px 1px #B58F43 inset;
}

.test-button:hover {
    color: #ececec;
    background-color: #E8C06B;

    animation: button-animation .25s ease-in-out;
}

@keyframes button-animation{
    0%{
        color: #6c6c6c;
        background-color: #FFDE96;
    }
    100%{
        color: #ececec;
        background-color: #E8C06B;    
    }
}

.text-fields{
    width: 90%;
    top: 0;
    margin-top: 2%;
    margin-right: 5%;
    margin-left: 5%;
}

.text-field{
    width: 30.3333333333333%;

    margin-left: 1.5%;
    margin-right: 1.5%;


    height: 400px;

    float: left;


    border-radius: 20px 20px;
    border-color: #212529;   
    background-color: #6c6c6c; 
}

.text-field-header{
    text-align: left;
    padding-left: 7.5%;
    padding-right: 7.5%;
    padding-top: 1.5%;
    border-radius: 20px 20px 0px 0px;
    background-color: #BF6365;
}

.text-field-body{
    text-align: left;
    padding-left: 6%;
    padding-right: 6%;
    padding-top: 2%;
}


.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-color: #fe9ea0;
    border-color: #fe9ea0;
}


@media only screen {
    .logo {
        max-width: 50%;
        max-height: 50%;
    }
}

@media only screen and (min-width: 576px) {
    .logo {
        max-width: 40%;
        max-height: 40%;
    }
}

@media only screen and (min-width: 768px) {
    .logo {
        max-width: 30%;
        max-height: 30%;
    }
}

@media only screen and (min-width: 992px) {
    .logo {
        max-width: 25%;
        max-height: 25%;
    }
}

@media only screen and (min-width: 1200px) {
    .logo {
        max-width: 20%;
        max-height: 20%;
    }
}
    