@font-face {
  font-family: orbitron;
  src: url(Fonts/orbitron.ttf);
}
@font-face {
  font-family: spacemono;
  src: url(Fonts/space-mono.ttf);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: orbitron;
}

html, body {
    overflow-x: hidden;
}

.container {
    overflow: visible;
    width: 100%;
    height: 400%;
    background-color: #0e192c;
    align-items: center;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #1f3353;
    color: #ffffff;
}

.logo-title {

    margin-left: 10px;
    display: flex;
    align-items: center;
}

.logo-title img {
    height: 40px;
    margin-right: 10px;
}

.title {
    font-family: orbitron;
    font-size: 1.5em;
    white-space: nowrap;
}

.menu button {
    font-family: spacemono;
    background: none;
    border: none;
    color: white;
    margin-left: 15px;
    font-size: 1em;
    cursor: pointer;
}

.menu button:hover {
    color: #A3BFFA	;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.img {
    border-radius: 20px;
    width: 400px;
}

.gamebtn {
    background: transparent;
    border: 2px solid rgba(4, 126, 104, 0.91);
    border-radius: 20px;
    margin: 20px 20px 0 20px;
    position: relative;
    display: inline-block;
}

.gamebtn:hover {
    box-shadow: 0 0 10px 5px rgb(4, 145, 119);
    cursor: pointer;
    opacity: 1;
}

.gamebtn:hover .btntext {
    opacity: 1;
}

.btntext {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #007b297f;
    color: #ffffff;
    border-radius: 20px;
    font-size: 3em;
    font-weight: bold;
    text-align: center;
    padding: 150px 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    width: 400px;
    height: 403px;
}
