@import url('https://fonts.googleapis.com/css2?family=Bungee+Inline:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nav {
    position: fixed;
    width: 100%;
    padding: 10px 0;
    z-index: 100;
    overflow: auto;
}

.nav .items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.nav .logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.img {
    background: url('971.jpg')no-repeat;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.center {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 20px;
    text-align: center;
    color: #fff;
}
.center .title {
    font-size: 65px;
    font-weight: 500;
    font-family: 'Bungee Inline', sans-serif;
}
.center .subtitle{
    font-family: 'Pacifico';
    font-size: 50px;
    font-weight: 500;
}
.center .subtitle{
    font-family: 'Pacifico';
    font-size: 50px;
    font-weight: 500;
}

.nav .items ul {
    display: inline-flex;
}

.nav .items ul li {
    list-style: none;
    margin-left: 7px;
}

.nav .items ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Bungee Inline', sans-serif;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav .items ul li a:hover{
    background: #fff;
    color: black;
  }
  .center .button a{
    margin-top: 20px;
    text-decoration: none;
    display: inline-flex;
    color: #fff;
    background: #080451;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Bungee Inline', sans-serif;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .center .button a:hover{
    background: #fff;
    color: black;
  }