* {
    margin: 0;
    padding: 0;
    font-family: "Kanit", sans-serif
}

body {
    overflow-x: hidden
}

.main-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    max-height: 100vh;
}

.all_content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    grid-column: 2/12;
    grid-row: 2/12;
    z-index: 3;
}

.video {
    grid-row: 1/13;
    grid-column: 1/13;
    position: relative;

}

.back_video {
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
}

.back {
    grid-column: 3/11;
    grid-row: 1;
    z-index: 10;
    font-weight: bold;
}

#her {
    grid-column: 1/3;
    grid-row: 1/2;
    width: 86%;
    margin-left: 20%;
    z-index: 1;
}

.content {
    margin-left: -20px;
    z-index: 2;
    width: 600px;
    height: 500px;
    background-color: rgba(248, 248, 248, 0.768);
    border-radius: 15px;
    grid-column: 2/7;
    grid-row: 3/7;
    margin-left: -200%;
    animation: slide-in 2s ease-out forwards;
    animation-delay: 5s
}

 @keyframes slide-in {
    from {
        margin-left: -200%;
    }

    to {
        margin-left: -20px;
    }
}

#battle_img {
    overflow: hidden;
    margin-top: 20px;
    width: 140%;
    height: 90%;
    grid-column: 6/11;
    grid-row: 3/7;
    z-index: 3;
    border-width: 5px;
    border-radius: 15px;
    border-style: solid;
    border-color: rgb(159, 159, 159);
    box-shadow: -6px 0px 10px 2px rgba(0, 0, 0, 0.377);
    transform: translate(200%);
    animation: slide-in-right 2s ease-out forwards;
    animation-delay: 5s
}


@keyframes slide-in-right {
    from {
        transform: translate(200%);
    }

    to {
        transform: translate(0);
    }
}

.heroes {
    font-size: 32px;
    margin: 15px;
    margin-bottom: 0;
    margin-left: 20px;
    margin-top: 24px;
    color: rgb(30, 57, 86);
    font-weight: bold;
}

.game_description {
    margin: 20px;
    margin-top: 0;
    font-size: 24px;
    width: 74%;
    color: rgb(30, 57, 86);
    font-weight: 520;
}

#about {
    margin-top: 30px;
}

.list a:hover {
    color: rgb(0, 8, 118)
}