/* Style the navigation menu */
.topnav {
  background-color: #e6fff9;
  position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #links {
  display: none;
}

/* Style navigation menu links */
.topnav a {
  color: #d64161;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  background: #e6fff9;
  display: block;
  position: absolute;
  right: 0;
  top: 11px;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #e6fff9;
  color: black;
}

/* Style the active link (or home/logo) */
.active {
  background-color: #e6fff9;
  color: black;
}

h1 {
  margin: 5% 15%;
  color: #d64161;        
}

h2 {
  width: 100%;
  font-size: calc(1vw + 1vh + 0.5vmin);
}

h3 {
  width: 100%;
  font-size: calc(0.5rem + 2vw);
}

.title {
  margin: 5px;
  width: 100%;
}

.content {
  margin: 5px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.title a {
  color: #00a36f;
  text-decoration: none;
}

nav a {
  color: #d64161;
  font-size: 2em;
  margin-left: 50px;
  margin-right: 50px;
  text-decoration: none;
}

.alert {
  padding: 5px;
  margin: 2px;
  width: 50%;
  color: #970020;
  background-color: #ffd5de;
}

body {
  background-color: #e6fff9;
}

.img-main {
  width: 100%;
  height: 100%;
}

.img-container {
  position: relative;
  text-align: center;
  color: none;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #d64161;
}

* {
  box-sizing: border-box;
}

.row {
  display: flex;
}

.column {
  flex: 75%;
  text-align: justify; 
}

.column-side {
  flex: 12.5%;
}

.container {
  position: relative;
  float: right;   
  width: 100px;
}

.overlay {
  border-left: 10px solid #e6fff9;
  position: absolute;
  float: right;
  bottom: 0; 
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1; 
  width: 100px;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 12px;
  padding: 0px;
  text-align: center;
}

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

.img-martin {
  border-left: 10px solid #e6fff9;
  float:right;
  width: 100px;
  height: 150x;
}