body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ecebe4;
  text-decoration: none;
}
p {
  color: black;
  text-decoration: none;
}

li,
a,
button {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  font-size: 16;
  color: black;
  text-decoration: none;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 10%;
}
.Header {
  font-size: xx-large;
}
.Header:hover {
  text-decoration: underline;
}

/* Footer  */
.note {
  padding: 1px 70px;
}
footer {
  background-color: rgba(255, 255, 255, 0);
  color: black;
  padding: 10px;
  border-radius: 5px;
  margin-top: auto;
}

.socials {
  list-style: none;
}
.github .linkedin {
  font-style: italic;
}
.socials li {
  display: inline-block;
}
.socials li a {
  transition: all 0.3s ease 0s;
  color: black;
}
.socials li a:hover {
  color: #ff0000;
  text-decoration: underline;
}
/* Footer End */

/* This is the beggining of the back button  */

.close-button {
  width: 40px;
  height: 40px;
  box-shadow: 0px 10 10px 10px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  background: #ecebe400;
  left: 0%;
  top: 50%;
  /* margin-top: -75px; */
  /* margin-left: -75px; */
  position: absolute;
  display: flex;
  /* z-index: 200; */
  text-indent: -9999px;
}
.close-button:before,
.close-button:after {
  content: "";
  width: 55%;
  height: 2px;
  background: black;
  position: absolute;
  top: 48%;
  left: 22%;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.close-button:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.close-button:hover:before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 29%;
  left: 18%;
}
.close-button:hover:after {
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  top: 67%;
  left: 18%;
}

/* this is the end of back button */

/* 
.br-center {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-box {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 20px;
  min-height: 800px;
  min-width: 350px;
  max-width: 400px;
  width: 100%;
  color: black;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 40px;
  text-decoration: wavy;
  text-align: left;
  width: 15vw;
  height: 15vw;
  background-position: center;
  background-size: cover;
}

.image-box:before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  top: 100%;
  content: "";
  background-color: #ecebe4b9;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.image-box span.caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-box a,
.image-box h5 {
  margin: 0;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  
}

.image-box a {
  letter-spacing: 1px;
  font-weight: 600;
  
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
  margin-bottom: 5px;
}
.image-box:hover:before {
  top: 10px;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.image-box:hover a,
.image-box:hover h5 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.image-box:hover a {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
} */

.container {
  position: relative;
  width: 300px;
  height: 800px;
  display: inline-block;
  border-radius: 10px;
  margin: 30px;
}

.image {
  position: relative;
  display: block;
  object-fit: cover;
  width: 300px;
  height: 800px;
  border-radius: 10px;
  margin: 30px;
}

.text {
  object-fit: cover;
  color: black;
  font-size: 35px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: sans-serif;
}

.overlay {
  position: absolute;
  opacity: 0;
  transition: all 0.2s ease;
  background-color: #008cba;
  border-radius: 10px;
  margin: 30px;
}
.container:hover .overlay,
.container:hover .overlayFade {
  opacity: 1;
}

.overlayTop {
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background-color: #ecebe4c4;
}

.container:hover .overlayTop {
  height: 100%;
}

.flex_explanantion {
  height: 200px;
  width: 80%;
  position: relative;
  text-align: center;
  left: 10%;

}
