html, body {
    height: 100%;
    width: 100%;
}
body {
    display: flex;
    flex-direction: column;
    font-family: Pompadur;
}
*{
    padding: 0;
}
.wrapper{
    displayy: 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 rgb(168,0,0);
    color: rgb(205,11,12);
}
.block{
    overflow: hidden;
    width: 100%;
}
.content{
    font-family: Pompadur;
    display: none;
    transform: translateX(-125%);
}
.content.active{
    margin-top: 15px;
    font-family: Pompadur;
    display: block;
    transform: translateX(0);
    animation: translate 0.5s cubic-bezier(0.68,-0.55,0.265,1.55);
}
@keyframes translate {
    0% {
        transform: translateX(-125%);
    }
    100% {
        transform: translateX(0);
    }
}
@media screen and (min-width: 778px) /* Mobile */ {
.row{
    display: flex;
}
}

body.night-theme .row {
  box-shadow: 0 2px 5px -1px rgba(255, 255, 255, 0.3);
}