@font-face {
    font-family: "Boleh";
    src: url("Boleh.ttf"),url("Boleh.otf");
}
body{
    margin: 0;
    font-family: "Boleh";
    color: white;
}
header{
    background: linear-gradient(#13181d,rgb(53, 86, 185));
}
header nav{
    padding: 30px 5% 0 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;

}
header nav h1 {
    margin: 0;
    text-transform: uppercase;
    font-size: 100px;
}
header nav .right {
    display: flex;
    align-items: center;   
}
header nav .right p {
    margin: 0 15px 0 0;
}
header nav .right p:hover  {
    color: blueviolet;
    cursor: pointer;
}

header nav .right p a:visited  {
    color:inherit;
    cursor: pointer;
}
header nav .right button {
    padding: 5px 15px;
    font-size: 18;
    background-color: inherit;
    font-family: "Boleh";
    border: 1px solid white;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: color 0.5s, background-color 0.5s;
}
header nav .right button:hover{
    color: white;
    background-color: blueviolet;
}

.presentation{
    padding: 30px 5%;
    margin-top: 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.presentation .game-presentation{
    width: 100%;
    flex-shrink: 1;
}
.presentation .game-presentation h1{
    margin: 0;
    font-size: 4vw;
    width: 80%;
}
.presentation .game-presentation p{
    color: #e9e9e9;
}
.presentation .game-presentation button{
        margin-top: 20px;
        padding: 15px 20px;
        font-size: 36px;
        font-family: "Boleh";
        border-radius: 10px;
        border: none;
        outline: none;
        cursor:pointer;
}
.first .game-presentation button {
    background-color: blueviolet;
    color: white;
    transition: color 0.5s, background-color 0.5s;

}
.first .game-presentation button:hover {
    background-color: white;
    color: blueviolet;
}
.presentation .image-presentation img{
    width: 100%;
    
}
.second{
    margin: 0;
    background:black;
    display: flex;
    justify-content: center;
}
.second.videowrapper {
    position:relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    clear: both;  
}
.second.videowrapper iframe{ /*,.second.videowrapper object, .second.videowrapper embed{*/
   position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.third {
    margin: 0;
    background: linear-gradient(#13181d,rgb(53, 86, 185));
}
.third .small-images{
    margin-top: 0;
    display: flex;
    flex-wrap:wrap;
    align-items: center;
    justify-content: center;
}

.third .small-images .small{
    padding: 20px;
    /*background-color: #33314d; */
    margin: 0 5px 5px 0;
    border-radius: 20 px;
} 
.third .small-images .small img{
    width: 300px;
}
footer {
    margin: 0;
    padding: 20 px;
    font-size: 50px ;
    background:black;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
@media screen and (max-width: 640px) {
    header nav h1{
        font-size: 2em;
    }
    header nav .right p {
        display: none;
    }
    .presentation   .game-presentation  h1{
        font-size: 2em;
    }
    .presentation .image-presentation img{
        display: none;
        
    }
}