.content-1{
    box-sizing: border-box;
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 150px;
}
.levels{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.level-screenshot{
    aspect-ratio: 16/9;
    width: 800px;
    height: 441.875px;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
} 
.level-guide-header{
    width: 100%;
    max-height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}
.level-guide-header img{
    max-width: 950px;
    max-height: 534px;
    border-radius: 15px;
    border: rgb(189, 253, 246);
    border-width: 2.5px;
    border-style: solid;
    transition: 0.5s;
}
.level-section{
    display: flex;
    gap: 15px;
}
.level-button{
    width: 65px;
    height: 65px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    border: rgb(189, 253, 246);
    border-width: 4px;
    border-style: solid;
    border-radius: 10px;
    font-size: 36px;
    transition: 0.5s;
    font-weight: 200;
    color: white;
    box-sizing: border-box;
}
.level-button:hover{
    font-size: 42px;
    background-color: rgba(255, 255, 255, 0.1);
}
/* RESPONSIVE RULES */

@media only screen and (min-width: 767px) {
    
}
@media only screen and (max-width: 767px) {
    
}