body {
    background: rgb(18, 9, 36);
    background: linear-gradient(0deg,
            rgb(0 45 96) 0%,
            rgb(18 40 103) 23%,
            rgb(6 30 96) 100%)
}

@font-face {
    font-family: "Bebas-Neue";
    src: url("BebasNeue-Regular.woff2") format("woff2");
    src: url("BebasNeue-Regular.woff") format("woff");
  }

.company-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #f5f4f4;
    font-family: "Bebas-Neue", sans-serif;
    font-size: 2vw;
    margin-top: 3%;
    margin-bottom: 5%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3;
}


.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 80%;
    max-width: 1200px;
    background-color: black;
    border-radius: 8px;
    overflow: hidden;
}

.close-container {
    margin: auto;
    margin-top: 10%;
    padding: 0;
    width: 80%;
    max-width: 1200px;
    text-align: right;
}

.close {
    color: white;
    position: relative;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    margin-right: 10px;
}


.modal iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}


.open-modal {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}


.game-list {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    width: 100%;
    column-gap: 20px;
    row-gap: 20px;
    justify-content: center;
    justify-items: center;
}

.game-card {
    background-color: rgba(36,57,74,1);
    border: 1px solid rgba(0, 0, 0, 0.8);
    font-size: 30px;
    text-align: center;
    border-radius: 8px;
    width: 350px;
    height: 275px;
    position: relative;
    overflow: hidden;
}

.dev-banner {
    position: absolute;
    height: 250px;
    width: 50px;
    left: 30px;
    top: -65px;
    background: red;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 2;
}

.dev-text {
    transform: rotate(270deg);
    position: absolute;
    left: -38px;
    top: 100px;
    color: #f5f4f4;
    font-family: "Bebas-Neue", sans-serif;
}


.game-card:hover {
    margin-top: -5px;
}

.game-card>img {
    border-radius: 8px 8px 0px 0px;
    max-width: 100%;
    max-height: 100%;
}

.game-card .Placeholder {
    position: absolute;
    top: 40%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 8px 8px 0px 0px;
    max-width: 100%;
}

.game-card>.game-name {
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
    font-size: 15px;
    position: absolute;
    margin-top: 3px;
    font-family: "Bebas-Neue", sans-serif;
    background-color: rgba(255, 255, 255, 0.8);
    bottom: 0px;
}