* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
}

#container {
    margin: 0 auto;
    padding-top: 5vh;
    padding-bottom: 5vh;
}

.header {
    padding: 0 2vw;
}

.header-img {
    display: block;
    width: 90%;
    max-width: 100px;
}

.header-img > img {
    width: 100%;
}

h1 {
    font-size: 24px;
    font-weight: 800;
    padding-bottom: 2px;
    border-bottom: 2px solid #dfdfdf;
    display: inline-block;
    padding-left: 4px;
    padding-right: 4px;
    margin-bottom: 10px;
}

h3 {
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 2px;
    border-bottom: 3px solid #efefef;
    display: inline-block;
    padding-left: 7px;
    color: #333;
    padding-right: 7px;
    margin-bottom: 10px;
}

.main-content {
    padding: 0 3vw;
    display: block;
}

.content-img {
    margin: 0 auto;
}

form {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

form input {
    height: 30px;
    border: none;
    padding: 2px 10px;
    max-width: 200px;
    border: 1px solid #afafaf;
    color: #333;
    font-family: 'Poppins';
    font-size: 12px;
    letter-spacing: .5px;
}

form input:focus {
    border-top: 0px solid black;
    box-shadow: none;
}

form button {
    height: 30px;
    border: none;
    padding: 2px 10px;
    max-width: 160px;
    background-color: #333;
    color: white;
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 13px;
    box-shadow: 1px 2px 3px #afafaf;
    cursor: pointer;
}


@import url(https://fonts.googleapis.com/css?family=Noto+Sans);

.customAlert {
  display: none;
  position: fixed;
  max-width: 25%;
  min-width: 250px !important;
  min-height: 18%;
  height: 150px;
  left: 50%;
  top: 50%;
  padding: 10px;
  box-sizing: border-box;
  margin-left: -12.5%;
  margin-top: -5.2%;
  background: #83C5BE;
}
@media all and (max-width: 1300px) {
  .customAlert .messageTitle {
    font-size: 16px !important;
  }
  .customAlert .message {
    font-size: 14px !important;
  }
  .customAlert input[type=button] {
    height: 15% !important;
  }
}
.customAlert .messageTitle {
  padding: 5px;
  color: white;
  font-size: 14px;
  line-height: 20px;
  text-align: justify;
}
.customAlert .message {
  padding: 5px;
  color: white;
  font-size: 14px;
  line-height: 20px;
  text-align: justify;
}
.customAlert input[type=button] {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 50%;
  height: 36px;
  margin-top: -45px;
  margin-left: -25%;
  outline: 0;
  border: 0;
  background: #333;
  color: white;
}
.customAlert input[type=button]:hover {
  transition: 0.3s;
  cursor: pointer;
  background: #555;
}

.rab {
  width: 200px;
  height: 30px;
  outline: 0;
  border: 0;
  color: white;
  background: #039b73;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}