@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'sans-serif';

}

body {
    background: #fff;
    min-height: 100vh;
    overflow-x: hidden;

    background-image: url('pexels-pok-rie-33563-2049422.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;  
    background-size: cover;
}





header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;

     background: rgba(255, 255, 255, 0.2);
     backdrop-filter: blur(10px);
}

.logo {
    font-size: 2em;
    color: #fff;
    pointer-events: none;
}

.navigation a {
    text-decoration: none;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    margin: 0 10px;
    font-weight: 600;
}

.navigation a:hover, 
.navigation a.active{
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blue(10px);
}

.parallax {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#text {
    position: relative;
    font-size: 5em;
    color: #333;
}

.aboutme {
    background: #333;
    text-align: center;
    padding-left: 100px;
    padding-right: 100px;
}

.white-text {
    color: #fff;
}

html {
  scroll-padding-top: 80px; /* adjust to your navbar height */
  scroll-behavior: smooth;
}

#about {
    scroll-margin-top: 0;
}

#about img {
  width: 200px;
  border-radius: 50%;
  display: block;
  margin: 20px auto;
}
