@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@600&display=swap');
.settingsinput {
    width: 45vw;
    height: 2vw;
    border-radius: 7px;
    font-family: 'Quicksand', sans-serif;
}

.bg-choose {
    width: 15vw;
    height: 14vh;
    background-color: white;
    border: 2px solid white;
    background-size: cover;
    border-radius: 10px;
    display: inline-block;
}

.bg-choose-overlay {
    width: 100%;
    height: 100%;
    text-align: center;
    backdrop-filter: blur(3px);
    transition: 0.5s;
    opacity: 0%;
    cursor: pointer;
}

a {
    color: white;
    font-size: 1em;
}

.bg-choose:hover > .bg-choose-overlay{
    display: block;
    opacity: 100%;
}