body,html{
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #1d1d1b;
  color: #f9f9f9;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.contentContainer{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: wrap;
    
    min-height: 100%;
    
}

.contentItem{
    text-align: center;
    width: 90%;
}

#footer{
    margin-top: 40px;
    width: 100%;
    height: 300px;
    background-color: #d2d2d2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1d1d1b;
}

#footerLogo{
    display: block;
    width: 200px;
    height: auto;
    margin: 0 auto;
    margin-bottom: 20px;
}

#homeLogo{
    max-width: 398px;
    width: 90%;
    margin-top: 50px;
    margin-bottom: 50px;
}

.homeText{
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

#mainInputContiainer{
    margin-top: 40px;
}

#mailText{
    background-color: transparent;
    border-radius: 5px;
    border-style: solid;
    border-width: 2px;
    border-color: #f9f9f9;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    width: 80%;
    max-width: 300px;
    margin-right: 10px;
    color: #f9f9f9;
    margin-bottom: 20px;
}

#okBtn{
    border-radius: 5px;
    padding-top: 17px;
    padding-bottom: 17px;
    padding-left: 25px;
    padding-right: 25px;
    color: #1d1d1b;
    background-color: #f9f9f9;
    outline: none;
    border-style: solid;
    border-width: 2px;
    border-color: #f9f9f9;
    font-size: 1.2em;
    font-weight: bold;
}

#okBtn:active{
    background-color: transparent;
    color: #f9f9f9;
}

#mailText::placeholder {
  font-weight: bold;
  color: #f9f9f9;
  font-size: 1.2em;
}

textarea:focus, input:focus{
    outline: none;
}

#footer a{
    display: block;
    color: #1d1d1b;
}

#errorText{
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
    text-align: left;
    color: #ff0b34;
    margin-top: 20px;
}

#thanksText{
    font-size: 1.3em;
    font-weight: bold;
}

.hidden{
    display: none;
}