*{box-sizing: border-box;}
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
.space-mono-regular {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.space-mono-bold {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-style: normal;
}

.space-mono-regular-italic {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: italic;
}

.space-mono-bold-italic {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-style: italic;
}
html{
    /* background: linear-gradient(180deg,rgba(171, 206, 255, 1) 0%, rgba(124, 190, 252, 1) 50%, rgba(0, 187, 255, 1) 100%); */
    background-color: rgb(12, 12, 21);
}
:root{
    --font: 'space-mono-regular', monospace;
}
.title{
    font-family: var(--font);
    text-align: center;
    color: white;
}
.subtitle{
    color: white;
    font-family: var(--font);
    text-align: center;
    font-weight: lighter;
}
.artwork-car{
    max-width: 1000px;
    position: relative;
    margin: auto;
}
.fader{
    display: none;
}
img {
    border-radius: 25px;
    box-shadow: 0px 0px 500px #00000040;
    border: 3px solid rgba(255, 255, 255, 0.208);
    z-index: 0;
}
.back img{
    width: 50px;
    aspect-ratio: 1/1;
    filter: invert();
    background-color: #00000040;
    padding: 5px;
    transition: all 0.15s;
}
.back img:hover{
    transform: scale(1.1);
}
.back img:active{
    transform: scale(0.99);
    filter: none;
}
.prev, .next{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    margin-right: 5px;
    margin-left: 5px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.25s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    border-radius: 15px;
}
.cap {
    color: #ffffff;
    font-size: 15px;
    font-weight:bold;
    position: relative;
    width: fit-content;
    text-align: center;
    justify-self: center;
    display: flex;
    font-family: var(--font);
    bottom:5vh;
    padding: 10px;
    background-color: black;
    border-radius: 25px;
}
.imgnum {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: relative;
    justify-self: center;
    display: flex;
    top: 4vh;
    font-family: var(--font);
    background-color: black;
    width: fit-content;
    border-radius: 25px;
}
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 8px;
    background-color: #505050;
    vertical-align: middle;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.6s ease;
}
.active, .dot:hover {
    background-color: #ffffff;
}
.active{
    width: 25px;
    height: 25px;
}
.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    0%{
        opacity: 0.4;
    }
    100%{
        opacity: 1;
    }
}
  