@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Luckiest+Guy&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Science+Gothic:wght@100..900&display=swap');

* {
    border: 1px solid rgba(255, 0, 0, 0);
}

:root {
    --primary-color: rgb(14, 13, 13);
    --secondary-color: rgb(88, 17, 97);
    --schrift-color: white;
}

body {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
    margin: 10px;
    height: 110vh;
    background-image: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color));
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: auto;
    cursor: default;
}

.bemerkung {
    color: var(--schrift-color);
    font-family: "Fredoka";
    margin-top: 0;
    position: relative;
   
    
}

.text {
    color: var(--schrift-color);
    font-family: "Fredoka";
}

.gridmore {
    z-index: 0;
    position: relative;
    display: grid;
    grid-template-columns: 400px 400px 400px;
    grid-template-rows: 280px 280px 280px;
    gap: 15px;
    align-self: center;
    grid-template-areas: 
    "music setup setup"
    "music setup setup"
    "progr progr progr";
}

.überschrift {
color: white;
font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.überschrift2 {
color: white;
font-family: "Montserrat", Arial, Helvetica, sans-serif;



border: none;
}

.Musik {
background-color: rgba(235, 235, 235, 0.151);
backdrop-filter: blur(10px);
border-radius: 10px;
grid-area: music;
text-align: center;
align-items: center;
overflow: auto;
padding: 20px;
border-right: solid 1px rgb(92, 75, 97);
border-bottom: solid 1px rgb(92, 75, 97);
}

.Setup {
background-color: rgba(235, 235, 235, 0.151);
backdrop-filter: blur(10px);
border-radius: 10px;
grid-area: setup;
overflow: auto;
text-align: center;
align-items: center;
padding: 20px;
border-right: solid 1px rgb(92, 75, 97);
border-bottom: solid 1px rgb(92, 75, 97);
}

.progr {
    background-color: rgba(235, 235, 235, 0.151);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    grid-area: progr;
    overflow: auto;
    text-align: center;
    align-items: center;
    padding: 20px;
    border-right: solid 1px rgb(92, 75, 97);
    border-bottom: solid 1px rgb(92, 75, 97);
}

::-webkit-scrollbar {
    width: 1vh;
    transition: 500ms;

}

::-webkit-scrollbar-track {
    background-image: linear-gradient(to top , rgb(87, 17, 96), rgb(51, 15, 55) );

}

::-webkit-scrollbar-thumb {
    background: rgba(124, 124, 124, 0.377);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: 500ms;
}

::-webkit-scrollbar-thumb:hover {
    transition: 500ms;
    background: rgba(163, 163, 163, 0.377);
}

::-webkit-scrollbar-thumb:active {
    transition: 500ms;
    background: rgba(102, 102, 102, 0.377);
}

#musicbtn::before {
        border: none;
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/launchkey.png');
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.1);
  z-index: -1;
}

#star::before {
        border: none;
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/star.png');
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.1);
  z-index: -1;
}

#where::before {
        border: none;
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/where.png');
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.1);
  z-index: -1;
}