@font-face {
    font-family: 'Satoshi';
    font-weight: 800;
    src: url('../../fonts/Satoshi-Variable.ttf') format('truetype');
}

.background {
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-style: normal;
    background: url(../../zeitung\ texture.png);
    background-color: #333333;
    
    min-height: 100vh;
    padding: 4vw;
    display: flex;
    justify-content: center;
    align-items: center, top;
}

.main-container {
    backdrop-filter: brightness(-5);
    background: radial-gradient(rgba(255, 255, 255, 0.144), rgba(255, 255, 255, 0.301));
    max-width: 150vw;
    height: 100%;
    width: 100%;
    padding: 2,5rem;
    border-radius: 50px;
    text-align: center;
    stroke: 0px 0px 15px;
}

h1 {
    font-size: 4rem;
    transition: all 0.3s ease;
    cursor: pointer;
}
.pc {
    justify-items: start;
    justify-self: center
}
.Audio-Equipment {
    justify-items: start;
    justify-self: center
}
.Other {
    justify-items: start;
    justify-self: center
}
.hardware {
    font-size: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    max-width: 80rem;
    border-radius: 15px;
    justify-content: space-evenly;
    border-width: .2rem;
    border-color: black;
    border-style: solid; /* DAS FEHLT! */
    padding: 20px;
    background-image: url(../../zeitung\ texture.png);
    background-size: contain; 
    background-color: #ffffff;
    margin-bottom: 5rem;
    margin-top: 7rem;
    margin-left: auto;
    margin-right: auto;
    box-shadow: .8rem .8rem 0rem #000000a9;
}
.SelectionButton {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;           
    font-family: 'Special Elite';
    font-size: 2rem;
    transition: all .3s ease;
    backdrop-filter: blur(50px) contrast(1.2) brightness(1.1);
    background: radial-gradient(rgba(255, 255, 255, 0.144), rgba(255, 255, 255, 0.301));
    border-radius: 15px;
    border-color: transparent;
    margin-bottom: 50px;
    width: auto;
    background-image: url(../../zeitung\ texture.png);
    background-color: white;
    background-size: contain; 
    background-size: 5rem;
    border-radius: 15px;
    border-color: black;
    border-width: .02rem;
    height: auto;
    padding-top: .8rem;
}
.SelectionButton:hover {
    transform: translateY(-2px) translateX(-2px);
    box-shadow: .3rem .3rem 0rem #000000a9;
}
.SelectionButton:active {
    scale: .8;
    box-shadow: 0px 0px .5rem;
}

.main-container {
    animation: blurIn 2s ease;
}

@keyframes blurIn {
    0% {
        filter: blur(20px);
        transform: scale(3);
        opacity: 0;
    }
    100% {
        filter: blur(0px);
        transform: scale(1);
        opacity: 1;
    }
}