*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins' ,sans-serif;
}
nav{
    position: fixed;
    background: #1b1b1b;
    width: 100%;
    padding: 10px;
    z-index: 12;
}
nav .menu{
    max-width: 100%;
    background: #894dfb;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.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: rgb(0, 183, 255) ;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.menu ul li a:hover{
 background: #fff;
 color: #000;
}
.img{
    background-image: url('../Img/testtwitch.jpg');
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    position: relative;
}
.img::before{
  content: '';
  position: absolute;
  height: 100%;
  Width: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.centro{
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50% , -50%);
    
    padding: 20px;
    text-align: center;
}
.centro .titulo{
    color: #874ff9;
    font-size: 70px;
    font-weight: 600;
}
.centro .subtitulo{
    color: #5e74e3;
    font-size: 30px;
    font-weight: 600;
}
.centro .btns{
    margin-top: 20px;    
}
.centro .btns button{
    height: 55px;
    width: 170px;
    border-radius: 5px;
    margin: 10px;
    border: 2px solid #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}
.centro .btns button:first-child{
    color: #fff;
    background: none;
}
.centro .btns button:first-child:hover{
    background: #fff;
    color: #000;
}