@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/montserrat/static/Montserrat-Medium.ttf') format('woff2');
}

body {
  background: linear-gradient(25deg, #264f18, #475f73);
  width: 80%;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
}

.imagebox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.wimd {
  border-radius: 30px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0);
  object-fit: cover;
  width: 250px;
  height: 400px;
  margin: 30px;
  transition: all 0.2s linear;
  display: block;
  filter: brightness(0.8) saturate(1) contrast(1) blur(0px);
}

.box:hover .wimd{
  filter: brightness(0.5) saturate(0) contrast(1.2) blur(20px);
  transition: all 0.2s linear;
}

.imagebox a {
  position: relative;
  transition: all 0.2s linear;
}

.box .text {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-62%, 0%);
  text-decoration: none;
  text-align: left;
}

.box:hover .text .description {
  color: #FFFFFF;
}

.box .text .languages {
  color: #FFFFFF;
  font-size: 15px;
  margin-bottom: 10px;
}

.box .text .title {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 25px;
}

.box .text .description {
  color: transparent;
  font-size: 14px;
}

.box .white-circle {
  /*top: 48px;
  right: 20px;*/
  top: 390px;
  right: 40px;
  position: absolute;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 30px;
  font-size: 10px;
  color: #000000;
  text-align: center;
  background: #ffffff;
  /*border: 1px solid black;*/
  z-index: 3;
  font-weight: 600;
}

.box .yellow-circle {
  top: 390px;
  right: 40px;
  position: absolute;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 30px;
  font-size: 10px;
  color: #000000;
  text-align: center;
  background: #FFDF6B;
  z-index: 3;
  font-weight: 600;
}

.box .banner .text-border {
  position: absolute;
  top: 6px;
  left: 5px;
  width: 237px;
  height: 36px;
  line-height: 30px;
  border-radius: 30px;
  font-size: 10px;
  color: #000000;
  text-align: center;
  background: #ffffff;
  border: 1.5px solid #268a51;
  z-index: 1;
}

.box .banner .text-border .banner-text {
  position: absolute;
  font-weight: bold;
  left: 20px;
  top: 3px;
}

.box .banner {
  position: absolute;
  top: 380px;
  left: 31px;
  width: 250px;
  height: 51px;
  background: #ffffff;
  border-radius: 30px;
  z-index: 0;
}

.negativeAlert {
  padding: 20px;
  background-color: #f44336;
  color: white;
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}

.backbutton {
  margin: 40px auto 40px;
  align-items: center;
  background-image: linear-gradient(144deg, #0095ff, #30b60b);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(11, 94, 154, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  font-family: Phantomsans, sans-serif;
  font-size: 20px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 3px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
}

.backbutton:active,
.backbutton:hover {
  outline: 0;
}

.backbutton span {
  background-color: rgb(41, 122, 76);
  padding: 16px 24px;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  transition: 300ms;
}

.backbutton:hover span {
  background: none;
}

@media (min-width: 768px) {
  .backbutton {
    font-size: 24px;
    min-width: 196px;
  }
}