* {
    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%;
    }
}

.btn {
    width: 100%;
    height: 45px;
    background: rgb(192, 163, 46);
    border: 3px solid rgb(192, 163, 46);
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.3em;
    color: rgb(98, 36, 132);
    font-weight: 500;
    transition: .25s;
}

.btn:hover {
    background: rgb(98, 36, 132);
    color: rgb(192, 163, 46);
}

.navigation {
    position: relative;
    left: 0;
    top: 0;
    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;
    padding: 3px;
}

.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;
    }
    .navigation .left .goto {
        display: none;
    }
}

.error-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
}

.error-wrapper .error {
    display: flex;
    flex-direction: column;
    border: 3px solid rgb(192, 163, 46);
    border-radius: 15px;
    background: transparent;
    background-color: rgba(0, 0, 0, .25);
    backdrop-filter: blur(10px);
    padding: 1%;
    max-width: 85vh;
}

.error-wrapper .error p {
    margin-bottom: 1%;
}

.error-wrapper .error button {
    color: rgb(192, 163, 46);
    background-color: rgb(98, 36, 132);
    border: 2px solid rgb(192, 163, 46);
    border-radius: 15px;
    padding: 1%;
    margin-left: 25%;
    margin-right: 25%;
    font-size: .7em;
    transition: .25s;
    cursor: pointer;
}

.error-wrapper .error button:hover {
    background-color: rgb(192, 163, 46);
    color: rgb(98, 36, 132);
}

.logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5vh;
    margin-bottom: 1vh;
    width: 100%;
}

.logo .img {
    width: 75%;
}

.bar {
    position: relative;
    left: 0;
    width: 100%;
    padding: 25px 0;
    background: rgb(192, 163, 46);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
}

.section-1 {
    display: flex;
    flex-direction: row;
    min-height: 60vh;
}

.section-1 .containers-wrapper {
    padding: 10px;
    display: flex;
    flex-direction: column;
    border: 3px solid rgb(192, 163, 46);
    border-radius: 20px;
    min-height: 45vh;
    width: 25%;
    overflow: hidden;
    margin: 3%;
    transition: .25s;
    transform: scale(1);
}

@media screen and (max-width: 999px) {
  .section-1 .containers-wrapper {
      width: 40%;
      font-size: 90%;
  }
}

.section-1 .containers-wrapper:hover {
    transform: scale(1.1);
}

.section-1 .containers-wrapper .date {
    border-bottom: 3px solid rgb(192, 163, 46);
}

.section-1 a {
    color: rgb(192, 163, 46);
    word-break: break-all;
}

.section-2 {
    flex-direction: column;
    min-height: 60vh;
    margin: 3vh 0 3vh 0;
}

.section-2 p {
    width: 50%;
    text-align: center;
}

@media screen and (max-width: 1599px) {
  .section-2 p {
        width: 75%;
    }
}

.section-2 img {
    width: 50%;
    max-width: 500px;
}

.section-2 a {
    color: rgb(192, 163, 46);
    word-break: break-all;
}

.section-3 {
    flex-direction: column;
    min-height: 60vh;
}

.section-3 p {
    width: 50%;
    text-align: center;
}

@media screen and (max-width: 1599px) {
  .section-3 p {
        width: 75%;
    }
}

.section-3 a {
    color: rgb(192, 163, 46);
    /*word-break: break-all;*/
}

.footer {
    min-height: 5vh;
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    font-size: 1.2em;
}

.footer a {
    color: rgb(192, 163, 46);
}