h3{
    font-style: normal;
    padding-left: 1em;
    padding-top: 1em;
}
.game-img{
    padding: 50px;
    padding-top: 15px;
    display: flex;
}
.game-img img{
    
    width: 650px;
    height: auto;
    border: 3px solid #00FF90;
    margin: 25px;
}

.description{
    display: block;
    padding: 20px;
}

.description h2{
    font-size: 36px;
}

.description ol{
    padding-left: 1em;
}
.description ul{
    padding-left: 1em;
    padding-bottom: 1em;
}
.description ul li{
    padding-left: 1em;
    list-style: none;
}


.description a{
    color: var(--text-main);
    text-decoration: underline;
    transition: color 0.2s;
}

.description a:hover{
    color: var(--accent-orange)
}

.description hr{
    height: 5px;
    border: 0px solid;
}

.patch-note{
    background-color: var(--card-bg);
    border-left: 5px solid var(--accent-orange);
    transition: background-color 0.3s;
}

.patch-note h3{
    padding: 1em;
    padding-bottom: .75em;

}

.patch-note:hover {
    background-color: var(--hover-bg);
}

.patch-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out;
}

.patch-content video{
    margin-left: 50px;
    border: 2px solid var(--secondary-accent);

}

.patch-note.open .patch-content {
    max-height: 1000px;
    transition: max-height 0.25s ease-in;
}

#v1-highscores img{
    margin: 1em;
    height: 500px;
    border: 2px solid var(--secondary-accent);
    width: auto;
}

.patch-content img{
    height: 150px;
    width: auto;
}    




