/* ############### ACTIVITY ##############*/
:root {
  --red: #d41016;
  --blue: #0008d5;
}
.Activity {
  padding: 1vw 5vw 8vw;
}
.Activity .activity__embed {
  width: 30vw;
  aspect-ratio: 16/9;
  object-fit: contain;
  display: inline-block;
  vertical-align: top;
}
.Activity .activity__label {
  display: inline-block;
  margin-left: 3.6vw;
  width: 60%;
}
.Activity .activity__label-title {
  font-size: 2.4vw;
  text-align: left;
  color: var(--red);
  margin-bottom: 1vw;
}
.Activity .activity__label-content {
  font-size: 1.25vw;
  text-align: left;
  line-height: 2.4vw;
  color: #717171;
}

@media screen and (max-width: 700px) {
  .Activity {
    padding: 0vw 3vw;
    text-align: center;
  }
  .Activity .activity__embed {
    margin-top: 2vw;
    width: 60vw;
    aspect-ratio: 16/9;
  }
  .Activity .activity__label {
    width: 90%;
  }
  .Activity .activity__label > * {
    text-align: center;
  }
  .Activity .activity__label-title {
    margin: 2vw 0vw;
    font-size: 4.1vw;
  }
  .Activity .activity__label-content {
    margin-bottom: 8vw;
    font-size: 3vw;
    line-height: 5vw;
  }
}

/* Download Button */
#Download {
  padding-left: 3vw;
  /* background image */
  background-image: url("../img/ukt-30.jpg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  /* displays */
  display: inline-block;
  height: 18vw;
  width: 100%;
  position: relative;
  /* Drop shadow */
  filter: drop-shadow(0px -4px 10px rgba(50, 50, 50, 0.1))
    drop-shadow(0px 4px 10px rgba(50, 50, 50, 0.1));
}


.download {
  height: 15vw;
  position: absolute;
}

.button-wrapper {
  position: relative;
  z-index: 1;
  margin-top: 4vw;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
  justify-content: center;
  max-width: 55vw;
}

.button-wrapper > span {
  display: block;
  width: 100%;
  margin-bottom: 1.5vw;
  font-size: 2vw;
  font-weight: 900;
  text-align: center;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.button {
  background-color: rgba(33, 33, 33, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  display: inline-block;
  font-size: 1.2vw;
  border-radius: 100px;
  padding: 0.5vw 2vw;
  text-decoration: none;
  color: #fff;
  min-width: 8vw;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-in-out;
}

.button:hover {
  background-color: rgba(45, 45, 45, 0.9);
  border-color: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.12);
}

.button:active {
  background-color: rgba(25, 25, 25, 0.95);
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 700px) {
  #Download {
    width: 100%;
    height: 45vw;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
  }

  #Download::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    z-index: 0;
  }
   
  .button-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    gap: 1vw;
    padding: 0;
    position: relative;
    z-index: 1;
  }

  .button-wrapper > span {
    display: block;
    width: 100%;
    color: #333;
    font-size: 5vw;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2vw;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
  }

  .button {
    text-align: center;
    font-size: 2.5vw;
    padding: 1.5vw 2.5vw;
    margin: 0 0.5vw;
    min-width: 20vw;
    border-radius: 100px;
    background-color: rgba(33, 33, 33, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
  }
}
.Gap {
  height: 15vw;
  width: 100%;
}
