@import url('https://fonts.googleapis.com/css2?family=Inter:wght@900&display=swap');
body {
    background-color: #121a8d;
    font-family: 'Inter', sans-serif;
}

.content {
    flex-direction: column;
    align-items: left;
    padding: 7vw;
    padding-top: 0vw;
}

.content hr {
    border: 0;
    height: 4px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(255, 255, 255), rgba(0, 0, 0, 0));
    margin: 1vw 0;
}

.search {
    display: flex;
    user-select: none;
    margin-top: 2.5vw;
    margin-left: 1.2vw;
    padding-top: 60px;
}
 
.search input {
    background-color: #222222;
    border: none;
    border-radius: 1vw 0 0 1vw;
    color: #fff;
    font-size: 1.5vw;
    font-weight: 600;
    padding: 0.8vw 1.5vw;
    font-family: 'Montserrat', sans-serif;
    z-index: 1;
    outline: none;
}
 
.search input::placeholder {
    color: #fff;
    font-weight: 600;
    font-size: 1.5vw;
}
 
.search button {
    background-color: #fff;
    border: none;
    border-radius: 0 1vw 1vw 0;
    color:#222222;
    font-size: 1.5vw;
    font-weight: 600;
    padding: 0.8vw 1vw;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    z-index: 1;
    transition: .3s all ease;
}
 
#games {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: .6vw;
    padding-bottom: 5vw;

}
    

#games img {    
    height: 15.6vw;
    width: 15.6vw;
    border-radius: 1vw;
    margin: .5vw;
    cursor: pointer;
    user-select: none;
    transition: transform .2s;
}
 


.featured {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1vw;
    margin:1%;
    margin-top: 6vw;
}

.featured h1 {
    font-size: 3.5vw;
    font-weight: 700;
    margin: 1vw 1vw .4vw 1vw;
    width: 83.8%;
    text-align: left;
    color: #fff;
}

.featured .column {
    display: flex;
    flex-direction: column;
}

.featured img {
    height: 12.5vw;
    width: 12.5vw;
    border-radius: 1vw;
    margin: .5vw;
    cursor: pointer;
    user-select: none;
    transition: all .2s;
}

.featured img:hover {
    transform: scale(1.02);
    filter: brightness(50%);
}

.games img:hover{
    transform: scale(1.02);
    filter: brightness(50%);
}
.featured .row img {
    height: 300px;
    width: 300px;
}

.featured a {
    display: inline-block;
    position: relative;
    color: #2c7ffc;
    text-decoration: none;
}
.games a{
    display: inline-block;
    position: relative;
    color: #2c7ffc;
    text-decoration: none;
}
.games .play-button  {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s; 
}
.label {
    font-size: 20px;
    overflow: none;
    text-align: left;
    justify-content: center;
    text-shadow: 0 0 100px #2c7ffc;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s;   
}
button{
    background: none;
    text-decoration: none;
    border: none;
}
.games a:hover .label{
    opacity: 1;
    pointer-events: none;
}
.games a:hover .play-button {
    opacity: 1;
    pointer-events: none;
}
.games .play-button i {
    font-size: 5vw;
    text-shadow: 0 0 100px #2c7ffc;
}
.featured .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s;
}

.featured a:hover .play-button {
    opacity: 1;
    pointer-events: none;
}

.featured .play-button i {
    font-size: 5vw;
    text-shadow: 0 0 100px #2c7ffc;
}
.title {
    font-size: 4vw;
    font-weight: 800;
    margin-left: 25%;

}
head p {
    margin-left: 50%;
}