.st-btn{
    background-color: rgb(75, 116, 151);
    border-radius: 50px;
    padding: 5px;
    border: none;
    cursor: pointer;
    color: whitesmoke;
}

.st-btn-lg{
    min-width: 300px;
    height: 50px;
    font-size: 21px;
}

.st-btn:hover{
    filter: brightness(80%);
}

.awicon{
    border: solid;
    border-radius: 20px;
    width: min(500px, 100%);
    position: relative;
    overflow: hidden;
    transition: 200ms;
}

.awicon:hover{
    scale: 1.1;
    cursor: pointer;
}

#auswahl{
    margin-top: 20px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.aw-footer{
    width: 100%;
    height: 20%;
    background-color: rgba(79, 83, 87, 0.5);
    backdrop-filter: blur(20px);
    position: absolute;
    bottom: 0;
    text-align: center;
    font-size: 24px;
    text-shadow: 0px 0px 10px black;
    box-shadow: 0px 0px 20px black;
}

#cookiebanner{
    height: 200px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(86, 91, 95, 0.7);
    backdrop-filter: blur(20px);
    z-index: 9998;
    display: none;
}



/* Cursor */

.circle{
    position: fixed;
    height: 50px;
    width: 50px;
    top: calc(50px / 2 * -1);
    left: calc(50px / 2 * -1);
    pointer-events: none;
    border-radius: 100px;
    border: solid rgba(128, 128, 128, 0.5);
    z-index: 9999;
}

@media screen and (max-width: 1000px) {
    .circle{
        display: none;
    }
}