html, body {
    height: 100%;
    width: 100%;
}
body {
    display: flex;
    flex-direction: column;
    font-family: Pompadur;
}
*{
    padding: 0;
}
.wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}
.row{
    justify-content: space-around;
    list-style: none;
    max-width: 890px;
    width: 100%;
    box-shadow: 0 2px 5px -1px rgba(0, 0, 0, 0.3);
}
.title{
    font-family: Pompadur;
    cursor: pointer;
    padding: 10px 20px;
    border-top: 3px solid transparent;
}
.title.active{
    font-family: Pompadur;
    border-top: 3px solid var(--main-color);
    color: var(--main-color);
}
.block{
    overflow: hidden;
    width: 100%;
}
.content{
    font-family: Pompadur;
    display: none;
    opacity: 0;
}
.content.active{
    margin-top: 15px;
    font-family: Pompadur;
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@media screen and (min-width: 885px) /* Mobile */ {
.row{
    display: flex;
}
}

body.night-theme .row {
  box-shadow: 0 2px 5px -1px rgba(255, 255, 255, 0.3);
}