/* Universal */
.nav-bar{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 70px;
    color: white;
    background-color:  #191919;
}
*{
    margin: 0;
    padding: 0;
}
.Menu{
    display: flex;
    align-items: center;
    width:300px;
    justify-content: space-between;
    
}
.Menu a{
    color: white;
    font-weight: bold;
    text-decoration: none;
    
}
.Menu a:hover{
    color: rgb(164, 5, 53);
    font-weight: bold;
    text-decoration: underline;
}
.title{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width:300px;
}
.title img{
    width: 50px;
    margin: 10px;
}
  
/* HOME */
.header{
    height: 500px;
    background-image: url("./Image/background/HD-wallpaper-nfs-heat-2019-need-for-speed-heat-need-for-speed-games-2019-games.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 50px 100px;
}
.logo{
    height: 300px;
}
.logo-container{
    display: flex;
    justify-content: center;
}

.header h1, h4{
    text-align: center;
    color: white;
    margin: 15px;
}
.about{
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url("./Image/background/nfs-payback-texture-xlarge-img-2x.png.adapt.crop16x9.320w.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.mode{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    background-color: #F90854;
    width: fit-content;
    border-radius: 66px;
}
.mode-title{
    text-align: center;
    color: white;
    padding-bottom: 20px;
}
.mode-container{
    text-align: center;
    padding: 20px;
    margin: 10px;
    width: 300px;
    border-radius: 66px;
    background-color: white;

}
.mode-img{
    width: 300px;
    height: 150px;
}
.mode-name{
    font-size: 20px;
}
.mode-des{
    font-size: 15px;
}
.map{
    padding: 2%;
    width: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    color: white;
}
.map h2{
    padding-bottom: 20px;
}
.map-img{
    width: 60%;
}
.map p{
    margin-top: 30px;
    width: 60%;
    text-align: center;
    font-size: 20px;
}
.download{
    background-color: rgba(255, 255, 255, 0.486);
    border-radius: 10px;
    width: 50%;
    
}
.download h1{
    font-size: 35px;
    padding: 10px;
    align-content: center;
    align-items: center;
    justify-content: center;
    display: flex;
}
.download img{
    width: 200px;
    height: 70px;
    padding: 10px;
}
.footer{
    background:#000;
    padding:30px 0px;
    text-align:center;
    }
    
.footer .row{
    width: 100%;
    margin: 1% 0%;
    padding: 0.6% 0%;
    color: gray;
    font-size: 0.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    }
    
.footer .row a:hover{
    color:#F90854;
    }

.footer .row a{
    text-decoration:none;
    color:gray;
    transition:0.5s;
    width:100%;
    display:inline-block;
    margin:0px 30px;
    }
    
.footer .row a i{
    font-size:2em;
    margin:0% 1%;
    }
@media screen and (max-width: 768px) {

    .mode{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .download{
        flex-direction: column;
        align-content: center;
        align-items: center;
        justify-content: center;
        display: flex;
    }
    .footer{
        text-align:left;
        padding:5%;
        }
    
    .footer .row p{
        display:block;
        margin:10px 0px;
        text-align:left;
        }
    
    .footer .row p{
        margin:0% 3%;
        }
    
}


