@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

*{
margin: 0;
padding: 0;
box-sizing: border-box;
    font-family:"Poppins",sans-serif;
}

body{
    min-height: 100vh;
    background:url('images/cool-background.png') no-repeat;
    background-size: cover;
    background-position: center;
}

.header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     padding: 20px 100px;
     background: transparent;
     display: flex;
     justify-content: space-between;
     align-items: center;
     z-index: 100;
}
.Logo {
    font-size: 32px;
    color: aliceblue;
    text-decoration: none;
    font-weight: 700;
}
.navbar a {
    position: relative;
    font-size: 18px;
    color: aliceblue;
    font-weight: 500px;
    text-decoration: none;
    margin-left: 40px;
}
.navbar a::before { 
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background:  rgb(255, 255, 255);
    transition: .3s;
}
.navbar a:hover::before {
width: 100%;
}
.secret a{
    text-decoration: none;
}

.home-title{
    text-align: center;
    
}