html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.lobby-item {
    display: block;
    margin: 15px;
    position: relative;
    overflow:hidden;
}

    .lobby-item img {
        max-width: 80vw;
        /*box-shadow: 3px 11px 17px 0px #f73fed;*/
        transition: all 0.2s;
        border-radius: 20px;
        height: 300px;
        width: 266px;
    }

@media only screen and (max-width: 736px) {


  

    .lobby-item img {
        border-radius: 10px;
        height: 180px;
        width: 160px;
    }
}

@media only screen and (max-width: 400px) {




    .lobby-item img {
        border-radius: 10px;
        height: 150px;
        width: 133px;
    }
}
.lobby-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width:100%;
}
.lobby-exc::before {
    display: block;
    content: 'EXCLUSIVE';
    position: absolute;
    z-index: 1;
    transform: rotate(-45deg);
    left: -40px;
    top: 25px;
    background-color: #D43F52;
    padding-left: 40px;
    padding-right: 40px;
    font-weight: bold;
}
.lobby-cert::before {
    display: block;
    content: 'UNDER CERTIFICATION';
    position: absolute;
    z-index: 1;
    transform: rotate(-45deg);
    left: -40px;
    top: 45px;
    background-color: #D43F52;
    padding-left: 20px;
    padding-right: 40px;
    font-weight: bold;
    font-size: 1rem;
}