@font-face {
  font-family: "Plasma";
  src: url(../fonts/IS-Plasma-400.otf);
}

* {
  margin: 0;
  padding: 0;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}

body {
  font-family: "Plasma", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0.5rem;
  color: rgb(198, 198, 198);
  background-color: rgb(0, 0, 0);
}

p::selection {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
}

a {
  text-decoration: none;
  color: rgb(119, 119, 119);
}

a::selection {
  color: rgb(255, 255, 0);
  background-color: rgb(0, 0, 0);
}

.container {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.column {
  width: 48%;
}

.right {
  text-align: right;
}

.hidden {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  height: 0;
  overflow: hidden;
  display: none;
}

.show {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  height: auto;
  display: block;
}

.button {
  cursor: pointer;
  color: rgb(103, 103, 103);
}

#header {
  text-align: left;
}

#img1 {
  position: absolute;
  width: 25vh;
  height: auto;
  pointer-events: none;
  transform: translate(-50%, -50%);
  border: 1px solid #000;
  top: 50%;
  left: 50%;
}

.image-slider {
  display: none;
}

@media (max-width: 660px) {
  body {
    margin: 0.5rem;
    position: relative;
    height: 100vh;
    width: 100vw;
  }

  .container {
    flex-direction: column;
  }

  .column {
    width: 100%;
    text-align: left;
  }

  .column.right {
    margin-top: 20px;
  }

  .image-slider {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }

  .image-slider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  #slider-image {
    width: 45vw;
    object-fit: contain;
    max-height: 100%;
  }

  .cursor-image {
    display: none;
  }
}
