@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Bebas Neue', sans-serif;
}
header{
    position: fixed;
    width: 100%;
    height:80px;
    top: 0;
    left: 0;
    background-color:transparent;
    display: flex;
    align-items: center;
    padding:20px 100px;
    justify-content: space-between;

}
body{
    display: flex;
    background-image: url(img.jpg) ;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;


}

.HeadLogo{
    font-size: 2em;
    user-select: none;
    color: aliceblue;


}
 .navBar{
    color: white;
    display: flex;
    align-items: center;
}

.a{
    color: white;
    text-decoration: none;
    font-size: 1.3em;
    margin:0px 20px;
    transition: 0.3s;

}
.a:hover{
    color:chocolate;
}

.LoginBtn{
    width:100px ;
    text-decoration: none;
    background-color: transparent;
    color: white;
    border: transparent;
    font-size:1.3em ;
    border-radius: 6px;
    padding: 10px;
    transition: 0.3s;
    cursor: pointer;
}
.LoginBtn:hover{
    background-color: white;
    color: #007bff;

}
.wrapper{
    width:325px ;
    height:350px ;
    border: 1.5px solid white;
    border-radius: 5px;
    padding: 15px;
}

