/* minecraft font */
@font-face {
  font-family: 'pixel_font';
  src: url('fonts/DePixelHalbfett.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-size: small;
}

/* body */
body {
  margin: 0;
  background: #0f1115;
  height: 100vh;
  overflow: hidden;
  font-family: 'pixel_font', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif, Arial, sans-serif;
  display: flex;
  justify-content: center;
}

/* main content window */
.content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  margin-left: 30%;
  margin-right: 30px;

  width: 750px;
  aspect-ratio: 3/2;

  background: #1a1d23;
  border: 1px solid #333;
  border-radius: 6px;
  color: white;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.char_image {
  margin-left: 30px;
  margin-right: 60%;
  margin-top: 30px;
}
.char_image img {
  width: 110%;
  transition: transform 1s ease, filter 0.5s ease;
}
.char_image img:hover {
  transform: scale(1.20) translateY(100px);
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.75));
  cursor: pointer;
}
.content_header {
  background: #22252d;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30px;
}
.content_body {
  padding: 10px;
}
.content_title {
  display: flex;
  justify-content: center;
  padding: 0px;
  margin-top: 40px;
  margin-bottom: 10px;
}
.content_subtitle {
  display: flex;
  justify-content: center;
  padding: 0px;
  margin: 0px;
}
.content_footer {
  display: flex;
  justify-content: center;
}
.content_icons {
  display: flex;
  justify-content: center;
  margin-bottom: 8%;
  gap: 15px;
}

/* icons */
.icon {
  width: 70px;
  text-align: center;
  cursor: pointer;
  color: white;
}
.icon img,svg {
  width: 60px;
  height: 60px;

  /* transition: transform 0.18s ease; */
  filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.45));
  transition: transform 0.2s ease;
}
.icon img:hover {
  transform: scale(1.08) translateY(-8px);
}
.icon_svg {
    fill: #595e6e;
    transition: transform 0.2s ease, fill 0.2s ease;
}
.icon_svg:hover {
    transform: scale(1.08) translateY(-8px);
    fill: #a3aabe;
}
.icon p {
  margin-top: 2px
}

/* windows - base */
.window {
  position: absolute;
  top: 150px;
  left: 150px;
  width: 300px;
  background: #1a1d23;
  border: 1px solid #333;
  border-radius: 6px;
  display: none;
  color: white;

  transform-origin: center center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s ease;
}
.window.open {
    animation: windowPop 0.28s ease forwards;
}
@keyframes windowPop {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.window_header {
  background: #22252d;
  padding: 8px;
  cursor: grab;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.window_body {
  padding: 10px;
}
.window_footer {
  display: flex;
  justify-content: center;
}
.window_close_button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
	font-family: 'pixel_font';
}

/* window - about me */
.window_about_me {
	
}