* {
    margin: 0;
}

.header {
    background: transparent;
    box-shadow: none;
    position: absolute;
    top:0;
    left: 0;
}

.main-screen {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid black;
    overflow: hidden;
}

.maintenance-logo-container {
    z-index: 2;
    display: flex;
    align-items: flex-start;
    animation: enter-in 1s ease 1;
    opacity: 0;
    animation-delay: 250ms;
    animation-fill-mode: forwards;
}

.maintenance-logo-container > img {
    height: 5em;
    margin-top: 1em;
}

.maintenance-logo-text {
    z-index: 2;
    font-weight: bold;
    font-size: 5rem;
    color: white;
}

.maintenance-logo-text > span {
    text-shadow: 0 0 5px black;
    font-family: "Dosis", sans-serif;
}

@keyframes enter-in {
    0% {
        opacity: 0;
        transform: translateY(-5em);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-screen-bg {
    background: url('../img/bg.png');
    background-size: cover;
    filter: blur(3px) brightness(75%);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.website-name {
    color: white;
    font-size: 4em;
}

.last-character-released {
    padding: 20px 0;
    box-shadow: inset 0px 5px 10px rgb(0 0 0 / 40%), inset 0px -5px 10px rgb(0 0 0 / 40%);
    background: rgb(28,38,60);
    background: linear-gradient(180deg, rgba(28,38,60,1) 0%, rgba(85,94,128,1) 50%, rgba(28,38,60,1) 100%);
}

.sub-title {
    text-align: center;
    color: white;
    margin: 1em;
    margin-top: 0;
}

.characters-actuality {
    display: flex;
    width: 100%;
    justify-content: space-around;
    margin-bottom: 20px;
}

.recent-characters {
    height: 200px;
    border-radius: 10px;
    position: relative;
    width: fit-content;
    overflow: hidden;
    cursor: pointer;
    margin: 1rem 0;
}

.recent-char-artwork {
    height: 100%;
}

.recent-char-artwork > img {
    height: 100%;
}

.recent-char-artwork::after {
    display: block;
    content: "";
    background-image: linear-gradient(0deg,rgba(0,0,0),transparent 50%);
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    opacity: 0.7;
    transition: all .3s ease-out;
}

.recent-char-artwork:hover::after {
    opacity: 1;
}

.article-name-wrapper {
    position: absolute;
    bottom: 0;
    color: white;
    font-weight: bold;
    margin: 0.5em 1em;
}

.home-category {
    height: 80vh;
    display: flex;
    border-top: 1px solid rgb(255 255 255 / 10%);
    background: rgb(28,38,60);
    background: linear-gradient(315deg, rgba(28,38,60,1) 0%, rgba(11,21,43,1) 100%);
    box-shadow: inset 0px 5px 10px rgb(0 0 0 / 20%), inset 0px -5px 10px rgb(0 0 0 / 20%);
}

.home-category:nth-child(odd) {
    /* background: rgb(13 20 35); */
    box-shadow: none;
    background: rgba(20,30,52,1);
    background: linear-gradient(330deg, rgba(7,13,28,1) 0%, rgba(20,30,52,1) 100%);
}

.home-category:nth-child(even) > .category-image {
    order: 2;
}

.home-category > div {
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.category-presentation > h2 {
    max-width: 60%;
    margin: 1em 0;
    text-align: center;
}

.category-presentation > p {
    max-width: 60%;
    text-align: center;
    line-height: 1.5em;
}

.category-image > img {
    max-width: 80%;
    max-height: 70%;
}

.rounded {
    border-radius: 20px;
    border: 1px solid;
}

.category-button {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    margin-top: 2em;
    outline: 2px solid;
    padding: 0.5em 2em;
    border-radius: 5px;
    transition: .3s;
}

.category-button:hover {
    color: black;
    background-color: white;
}

@media screen and (max-width: 768px) {
    .characters-actuality {
        flex-direction: column;
        align-items: center;
    }

    .maintenance-logo-container > img {
        height: 4em;
        margin-top: .5em;
    }

    .home-category {
        flex-direction: column;
    }

    .home-category > div {
        width: 100%;
    }

    .home-category:nth-child(even) > .category-image {
        order: unset;
    }
    
    .category-image {
        max-height: 45%;
    }

    .category-image > img {
        max-width: 80%;
        max-height: 85%;
    }
}