.embed-container {
    top: 100px;
    width: 100dvw;
    height: calc(100vh - 120px);
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-frame{
    height: 100%;
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    overflow: hidden;
}

.game-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-title{
    padding: 0 10px;
    height: 50px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
}

#game-title{
    text-transform: capitalize;
}

.buttonsforiframe img {
    border-radius: 15px;
    width: 30px;
    height: 30px;
    margin: 6 7px;
    transition: 0.2s;
}

.buttonsforiframe img:hover {
    transform: scale(1.25);
    cursor: pointer;
}