.logo {
  height: auto;
  max-width: 200px;
}

body {
  font-family: Outfit;
}

.topnav {
  background-color: #ffffff;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px 16px;
  text-decoration: none;
  font-size: 16px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #afafaf;
}

/* Add an active class to highlight the current page */
.active {
  background-color: #e14177;
  color: white;
}

.responsive {
  height: auto;
  width: 100%;
}

.div {
  display: block;
  text-align: center;
  unicode-bidi: isolate;
}

.flex-container {
  background-color: White;
  display: flex;
  justify-content: center;
  width: 100%;
}

.column {
  background-color:#afafaf;
  display: block;
  margin: 10px;
  min-height: 40vh;
  padding: 14px;
  text-align: center;  
}

.frame {
  float: left;
  padding: 20px;
  height: auto;
  width: 100%;
}

h1 {
  color: #01427a;
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  text-align: center;  
}

h2 {
  color: #0c0c0d;
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  text-align: center;
}

h3 {
  background-color: #afafaf;
  color: #01427a;
  font-size: 20px;
  font-style: normal;
  padding: 10px;
  text-align: center;  
}

p {
  color: #0c0c0d;
  font-size: 16px;
  font-style: normal;
  line-height: 1.3;
  text-align: center;
  
}

button {
  background-color: #e14177;
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  font-style: normal;
  padding: 5px;
  text-align: center;  
}

.footer {
  background-color: #afafaf;
  bottom: 0;
  color: black;
  left: 0;
  text-align: center;
  width: 100%;
}  

input[type=text], [type=label], :focus{
  background: #ffffff;
  border: none;
  clear: left;
  cursor: pointer;
  padding: 5px;    
}

input[type=signmeup], input[type=reset]{
  background-color: #e14177;
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  margin: 4px 3px;
  padding: 2px 5px;
  text-align: center;
  text-decoration: none;  
}

li { /* styles all li elements*/
  display: inline-block;
  cursor: pointer;
  list-style-type: none;
}

.container {
  position: relative;
  width: 50%;
}

.image {
  cursor: pointer;
  display: block;
  max-height: 300px;
  width: 100%;
}

.overlay {
  background-color: #6dcffb;
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .5s ease;
  width: 100%;

}

.container:hover .overlay {
  opacity: 1;
}

.text {
  color: #0c0c0d;
  font-size: 16px;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}