.tileparent {
    width: 100%;
}

.tile {
    width: 200px;
    height: 250px;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    border: 5px solid rgb(32,32,32);
    border-radius: 10px;
    background-color: rgb(32,32,32);
    margin: 50px;
    text-wrap: wrap;
    position: relative;

}

.tile:hover,
.tile:focus {
    /*height: auto;*/
    /*scale: 105%;*/
    cursor: pointer;

}

.tile:hover p,
.tile:focus p {
    visibility: visible;
}

.tile p {
    color: white;
    text-decoration: none;
    visibility: hidden;
}

.tile h4 {
    color: white;
    text-align: center;
    text-decoration: none;
}

.tile a {
    text-decoration: none;
}

.tile:hover img,
.tile:focus img {
    opacity: 0.2;
}

fieldset {
    display: inline-block;
}

input[type=radio] {
    transform: scale(1.5);
}

.smallbutton {
    font-size: 120%;
    border-radius: 5px;
    background-color: rgba(0,0,0,0);
    color: var(--prim);
    border: none;
}

.smallbutton:hover {
    background-color: rgba(94,189,240,0.5);
    transition: all 250ms;
}

.activated {
    color: white !important;
    background-color: rgb(93, 181, 240);
}

.activated:hover,
.activated:active {
    background-color: rgb(93, 181, 240) !important;
}

a {
    color: rgb(93, 181, 240);
}

#_h {
    text-align: center;
}

#searchi {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

#wtsel {
    margin-right: 20px;
}

html,body {
    background-color: #101010;
}