body {
  background-color: #000000;
  height: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-family: "m6x11plus", sans-serif;
  min-height: 100dvh;
  height: 800px;
  color: #ffffff;
}

@font-face {
  font-family: "Home Video";
  src: url("../../fonts/HomeVideo-BLG6G.ttf") format("truetype");
}

@font-face {
  font-family: "m6x11plus";
  src: url("../../fonts/m6x11plus.ttf") format("truetype");
}


.main {
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  background-color: #000;
}

button {
  background-color: #00000080;
  border-width: 0px;
  color: white;
}

.title {
    align-content: baseline;
    font-size: 2em;
    text-align: center;
    margin: 0;
    min-height: 300px;
    background-size: cover;
    background-position-x:center;
    background-repeat: no-repeat;
    background-position-y: center;
}


input[type="range"] {
  border-width: 1px;
  border-color: black;
  border-style: solid;
  -webkit-appearance: none !important;
  background: white;
  height: 7px;
  accent-color: white;
}
input[type="range"]::-webkit-slider-thumb {
  background: black;
  border-radius: 0px;
  height: 10px;
  width: 10px;
}


.audio-player {
  text-align: end;
  font-size: small;
}

.content {
    display: grid;
    column-gap: 0;
    grid-template-columns: 100%;
    grid-row-gap: 0.5%;
    grid-auto-flow: row;
    text-align: center;
    align-items: start;
  }

@media only screen and (min-width: 640px) {
    .content {
        display: grid;
        column-gap: 0.5%;
        grid-template-columns: 33% 33% 33%;
    }

    .title h3 {
        font-size: smaller;
        white-space: nowrap;
    }
      
  }
  
.pic {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.content p {
    margin-top: 0;
}

.imgcontainer{
    background-color: white;
    color: black;
    padding: 5%;
    margin: 3%;
    margin-bottom: 5%;
}

.cardtitle {
    font-family: "Home Video", sans-serif;
    color: white;
    background-color: #000000;
    margin-top: 0;
    margin-bottom: 0;
}
.cardsubtitle {
    text-align: right;
    margin-top: 0;
    margin-bottom: 0;
}
.homevideo {
    font-family: "Home Video", sans-serif;
    color: black;
    background-color: white;
  }

.title h3 {
    font-size: small;
}

.updateContainer{
  max-width: 50%;
  color: whit
}


a:link {
  color: var(--secondary-color);
  cursor: url("../../imgs/cursor/link.png"), auto;
  text-decoration: none;
}

.linkCursor {
  cursor: url("../../imgs/cursor/link.png"), auto;
}

a:visited {
  color: var(--secondary-color);
  cursor: url("../../imgs/cursor/link.png"), auto;
  text-decoration: none;
}


html {
  cursor: url("../../imgs/cursor/pointer.png"), default;
}


.imgcontainer {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.imgcontainer img {
  /* display: none; */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 5px solid transparent;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Spinner animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}