* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(98, 36, 132);
    font-size: 120%;
    width: 100%;
}

@media screen and (max-width: 1199px) {
    body {
        font-size: 110%;
    }
}

@media screen and (max-width: 999px) {
    body {
        font-size: 100%;
    }
}

@media screen and (max-width: 899px) {
    body {
        font-size: 90%;
    }
}

@media screen and (max-width: 799px) {
    body {
        font-size: 80%;
    }
}

.navigation {
    position: relative;
    width: 100%;
    padding: 1vh 0;
    background: rgb(192, 163, 46);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    font-size: 120%;
}

.navigation .title-bottom {
    margin-top: -5px;
}

.navigation a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

/* LEFT */

.navigation .left {
    display: flex;
    flex-direction: row;
    font-size: 1.4em;
    color: rgb(98, 36, 132);
}

.navigation .left i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
}

.navigation .left a {
    margin-left: 2vh;
    position: relative;
    color: rgb(98, 36, 132);
    text-decoration: none;
}

.navigation .left .title {
    display: flex;
    flex-direction: row;
    cursor: pointer;
    position: relative;
    margin-left: 1vh;
}

.navigation .left .title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 3px;
    background: rgb(98, 36, 132);
    border-radius: 5px;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .25s;
}

.navigation .left .title:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}

.navigation .left a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 3px;
    background: rgb(98, 36, 132);
    border-radius: 5px;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .25s;
}

.navigation .left a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}

/* CENTER */

/* RIGHT */

.navigation .right {
    display: flex;
    flex-direction: row;
    font-size: 1.4em;
}

.navigation .right .profile {
    text-decoration: none;
    padding-right: 2vh;
    color: rgb(98, 36, 132);
}

.navigation .right .profile i {
    padding-right: .5vh;
}

.nav-btn {
    background: transparent;
    border: 2px solid rgb(98, 36, 132);
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2em;
    color: rgb(98, 36, 132);
    font-weight: 500;
    transition: .25s;
    overflow: hidden;
    text-align: center;
    margin-right: 2vh;
}

.nav-btn:hover {
    background: rgb(98, 36, 132);
    color: rgb(192, 163, 46);
    overflow: hidden;
}

@media screen and (max-width: 849px) {
    .navigation .right .profile {
        display: none;
    }
}

.search-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    height: 10vh;
}

.search-container form {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.search-container .input {
    border: 3px solid rgb(192, 163, 46);
    border-radius: 5px;
    background: none;
    font-size: 1.4em;
    padding: 2%;
    width: 50vh;
}

.search-container .button {
    width: 30px;
    height: 30px;
    font-size: 1.8em;
    background: none;
    border: none;
    color: rgb(192, 163, 46);
    margin-left: 1vh;
    cursor: pointer;
}

a {
    /*color: rgb(192, 163, 46);*/
    color: rgb(0, 0, 0);
    text-decoration: none;
}


.list-container {
    width: 60%;
    margin: 3vh 20% 0 20%;
    font-size: 1.1em;
}

.entry-container {
    width: 60%;
    margin: 3vh 20% 0 20%;
    font-size: 1.4em;
}

.entry-container .entry-content {
    border: 3px solid rgb(192, 163, 46);
    border-radius: 10px;
}

.error {
    display: flex;
    justify-content: center;
    margin: 2vh 0 2vh 0;
}

.list-container .entry {
    border: 3px solid rgb(192, 163, 46);
    border-radius: 10px;
    margin-top: 3vh;
}

.header {
    padding: 1%;
}

.header .description {
    display: flex;
    justify-content: space-between;
}

.header .description i {
    min-width: 20%;
}

.entry-container .header {
    border-bottom: 3px solid rgb(192, 163, 46);
}

.footer {
    padding: 1%;
}

@media screen and (max-width: 1920px) {
    .list-container {
        font-size: 1.1em;
    }
}

@media screen and (max-width: 1099px) {
    .search-container .input {
        width: 40vh;
    }
}

@media screen and (max-width: 799px) {
    .search-container .input {
        width: 30vh;
    }
}

@media screen and (max-width: 549px) {
    .search-container .input {
        width: 25vh;
    }
}

@media screen and (max-width: 399px) {
    .search-container .input {
        width: 20vh;
    }
}