#fullscreen-button {
    background-color: #1a1e30;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    position: relative;
    font-size: 25px;
    width: 100%;
    cursor: pointer;
    margin: auto;

    font-weight: bold;

    border-style: solid none none none;
    border-width: 1px;
    border-color: #000000;
}

.game-frame-desktop-default{
    width: 100%;
    border: none;
    display: inline-block;
    position: relative;
    margin-bottom: -4px;
}

@media (min-width: 1281px) {
    .game-frame-desktop-default{
        height: 720px;
    }
}
  
@media (min-width: 1025px) and (max-width: 1280px) {
    .game-frame-desktop-default{
        height: 600px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .game-frame-desktop-default{
        height: 480px;
    }
}
  
@media (min-width: 481px) and (max-width: 767px) {
    .game-frame-desktop-default{
        height: 360px;
    }
}
  
@media (max-width: 480px) {
    .game-frame-desktop-default{
        height: 240px;
    }
}