* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Unifont';
  src: url(unifont.otf) format('opentype');
  font-weight: normal;
  font-style: normal;

}

body{
  font-family: 'Unifont', Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  background-image: url('images/backgr.jpg');
  background-color: #A0C3DB;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #4f4f4f;
}

.main-panel{
  position: relative;
  width: 800px;
  margin: 50px auto;
  padding: 30px;
  background-color: #cfcfcf;
  border: 2px solid #4f4f4f;
  box-sizing: border-box;
  position: relative;
}

.link1{
  color: #242424;
}

.element {
    cursor: url('Something/cursor.png') 32 32, auto;

}


.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
}

.text-content {
  flex: 1;
}

.image-container {
  flex-shrink: 0;
  margin-top: 0;
}

.flenyo-pic {
  cursor: url('Something/cursor_pointy.png') 32 32, pointer;
  width: 210px;
  height: 210px;
  float: left;
  margin-left: 0px;
  margin-right: 20px;
  margin-bottom: 0px;
  margin-top: 0;
  border: 2px solid  #4f4f4f;
  object-fit: cover;
}
.needtime-pic {
  float: left;
  margin-left: 0px;
  margin-bottom: 0px;
  margin-top: 0;
  object-fit: cover;
}
.reality-pic {
  float: left;
  margin-left: 10px;
  margin-bottom: 0px;
  margin-top: 0;
  object-fit: cover;
}
.letmusic-pic {
  float: left;
  margin-left: 10px;
  margin-bottom: 0px;
  margin-top: 0;
  object-fit: cover;
}
.ocean-pic {
  float: left;
  margin-left: 0px;
  margin-bottom: 0px;
  margin-top: 0;
  object-fit: cover;
}
.fleniada-pic {
  width: 200px;
  height: 200px;
  border: 2px solid #3B9C64;
  float: left;
  margin-left: 0px;
  margin-bottom: 0px;
  margin-top: 0;
  object-fit: cover;
}
.freak1-pic {
  width: 200px;
  height: 200px;
  border: 2px solid #3B9C64;
  float: left;
  margin-left: 10px;
  margin-bottom: 0px;
  margin-top: 0;
  object-fit: cover;
}

.image-tube {
  float: left;
  margin-left: 0px;
  margin-bottom: 0px;
  margin-top: 0;
  object-fit: cover;
}

.link1 {
  cursor: url('Something/cursor_pointy.png') 32 32, pointer;
}

.image-on-top {
  position: absolute;
  top: -50px;
  left: 748px;
  width: 100px;
  transform: rotate(45deg);
}

.image-vol {
  position: absolute;
  top: 710px;
  left: -33px;
  width: 50px;
}






/*just in case, the buttons and this "range" object were copied from Adam Hammad's and Jordan Scales's project, yo yo*/
button {
    cursor: url('Something/cursor_pointy.png') 32 32, pointer;
    width: 70px;
    height: 22px;
    font-family: var(--sans-serif);
    -webkit-font-smoothing: antialiased;
    font-size: 11px;
    box-sizing: border-box;
    border: 1px solid #003c74;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(236, 235, 229, 1) 86%,
        rgba(216, 208, 196, 1) 100%
    );
    box-shadow: none;
    border-radius: 3px;
    &:not(:disabled) {
        &:active,
        &.active {
            box-shadow: none;
            background: linear-gradient(
                180deg,
                rgba(205, 202, 195, 1) 0%,
                rgba(227, 227, 219, 1) 8%,
                rgba(229, 229, 222, 1) 94%,
                rgba(242, 242, 241, 1) 100%
            );
        }
        &:hover {
            box-shadow: inset -1px 1px #fff0cf, inset 1px 2px #fdd889, inset -2px 2px #fbc761, inset 2px -2px #e5a01a;
        }
    }
    &:focus,
    &.focused {
        box-shadow: inset -1px 1px #cee7ff, inset 1px 2px #98b8ea, inset -2px 2px #bcd4f6, inset 1px -1px #89ade4,
            inset 2px -2px #89ade4;
    }
    &::-moz-focus-inner {
        border: 0;
    }
}


input[type="range"] {
  cursor: url('Something/cursor_pointy.png') 32 32, pointer;
    margin:5px;
    -webkit-appearance: none;
    width: 230px;
    background: transparent;
    &:focus {
        outline: none;
    }
    &::-webkit-slider-thumb {
        -webkit-appearance: none;
        height: 21px;
        width: 11px;
        background: url('./icon/indicator-rectangle-horizontal.png') no-repeat center;
        transform: translateY(-8px);
    }
    &::-moz-range-thumb {
        height: 21px;
        width: 11px;
        border: 0;
        border-radius: 0;
        background: url('./icon/indicator-rectangle-horizontal.png') no-repeat center;
        transform: translateY(2px);
    }
    &::-webkit-slider-runnable-track {
        width: 100%;
        height: 2px;
        box-sizing: border-box;
        background: black;
        border-right: 1px solid grey;
        border-bottom: 1px solid grey;
        box-shadow: 1px 0 0 white, 1px 1px 0 white, 0 1px 0 white, -1px 0 0 darkgrey, -1px -1px 0 darkgrey,
            0 -1px 0 darkgrey, -1px 1px 0 white, 1px -1px darkgrey;
    }
    &::-moz-range-track {
        width: 100%;
        height: 2px;
        box-sizing: border-box;
        background: black;
        border-right: 1px solid grey;
        border-bottom: 1px solid grey;
        box-shadow: 1px 0 0 white, 1px 1px 0 white, 0 1px 0 white, -1px 0 0 darkgrey, -1px -1px 0 darkgrey,
            0 -1px 0 darkgrey, -1px 1px 0 white, 1px -1px darkgrey;
    }
}
input[type="range"].has-box-indicator {
    &::-webkit-slider-thumb {
        background:  url('./icon/indicator-rectangle-horizontal.png') no-repeat center;
        transform: translateY(-10px);
    }
    &::-moz-range-thumb {
        background: url('./icon/indicator-rectangle-horizontal.png') no-repeat center;
        transform: translateY(0px);
    }
}
