@media (min-width: 768px) {
    html {
        font-size: 14px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
    font-size: 16px;
}

body {
    margin-bottom: 60px;
    font-family: 'Roboto';
    font-size: 16px;
}
.hidden { display: none; }
.tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 50px 0;
}
.tile {
    width: 200px;
    height: 160px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    box-shadow: inset -1px -1em 2em 0px rgb(0 200 0 / 30%), 0.3em 0.3em 1em rgb(200 0 0 / 60%);
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
    flex-direction: column;
    color: #5945c3;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}
.tile:hover {
    width: 210px;
    height: 170px;
    transform: rotate(2deg);
}
.tile img {
    width: 50%;
}
.pagging-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 20px;
    padding: 10px 0;
}
h1 {
    color: #5f69b9;
}
h1 span {
    transition: all 0.8s ease-in-out;
}
