@import url('baseStyle.css');

body {
  background: url("../images/missing_texture.png");
  background-size: cover;
  overflow: hidden;
}

.container {
  position: relative;
  border: 0.5vh solid black;
  width: 50vw;
  height: 60vh;
  border-radius: 2vh;
  overflow: hidden;
  box-shadow: 1vh 1vh 0.5vh rgba(0,0,0,0.5);
  margin-bottom: 5vh;
}

.background {
  background: url("../images/background.png");
  background-size: cover;
  box-sizing: border-box;
  border-radius: inherit;
  filter: blur(1vh);
  transform: scale(1.08);
  transform-origin: center;
  will-change: filter, transform;
  opacity: 0.95;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  position: absolute;
}

.container-content {
  padding: 0 1vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  overflow-y: auto;
}

.link-content {
  height: 70vh;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1em;
  padding-bottom: 5vh;
}

.social-div {
  width: 17vh;
  height: 17vh;
  border: 0.2vh solid #bddeff86;
  border-radius: 1vh;
  box-shadow: inset 0 0 10vh #97e7ff5c, 0.5vh 0.5vh 0.5vh rgba(0,0,0,0.25);
  transition: transform 0.2s ease-in-out, width 0.2s ease-in-out, height 0.2s ease-in-out;
  overflow: hidden;
}

.social-image {
  width: 50%;
  margin-top: 10%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.social-div:hover {
  cursor: pointer;
  transform: scale(1.13);
}

h2 {
  text-align: center;
  color: #C8F4F9;
  vertical-align: bottom;
  position: relative;
  bottom: 1vh;
  font-size: 3.5vh;
}

h1 {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 6vw;
}

@media (max-width: 768px) {
  .container {
    width: 90vw;
    border-radius: 1vh;
  }

  h1 {
    font-size: 10vw;
  }

}