@import url('https://fonts.googleapis.com/css2?family=Poppins');
*
{
    margin: 0;
    padding: 0;    
    box-sizing: border-box;
    font-family:'Poppins'sans-serif;
}

nav
{
    position: fixed;
    background: #1b1b1b;
    width: 100%;
    padding: 10px 0px;
    z-index: 12;
}

nav .menu
{
    max-width: 1250px;
    margin:auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;    
}

.menu .logo a
{
   text-decoration: none;
   color: #fff;
   font-size: 35px;
   font-weight: 600;
}

.menu ul
{
    display: inline-flex;
}

.menu ul li
{
    list-style: none;
    margin-left: 7px;
}

.menu ul li a
{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    /*background: red;*/
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.menu ul li a:hover
{
    background: #fff;
    color: #000;
}

.image img
{
    max-width: 100%;
    max-height: 100%;
    position: relative;
    display: block;
}

.image::before
{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.center
{
    position: absolute;
    top: 25%;
    /*left: 50%;*/
    /*width: 100%;*/

    /*transform:translate(-50%,-50%);*/
    /*background: red;*/

    padding: 0 20px;
    text-align: center;
}

.center .title
{
    color: #fff;
    font-size: 25px;
    font-weight: 500;
}

.center .btns
{
    margin-top: 20px;
}

.center .btns button
{
    height: 55px;
    width: 170px;
    border-radius: 5px;
    border: none;
    margin: 0 10px;
    border: 2px solid #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 0 10px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.center .btns button
{
   color: #fff;
   background: none;
}

.center .btns button:hover
{
    background: white;
    color: black;
}

.footer
{
    color: #fff;

    background: #1b1b1b;
    width: 100%;
    padding: 10px 0px;
    border: 2px solid black;
}