@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&display=swap');

* {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    scroll-behavior: smooth;
    background-color: black;
    color: white;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: black;
    padding-top: 80px;
}

nav {
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    background: rgba(39, 39, 39, 0.525);
    border: 2px solid rgb(33, 33, 33);
    border-radius: 40px;
    padding: 15px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.525);
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
    padding: 6px 12px;
    border-radius: 12px;
    background-color: transparent;
}

.navbtn {
    background: rgba(39, 39, 39, 0.525);
    border: 2px solid rgb(33, 33, 33);
    text-decoration: none;
    padding: 15px;
    border-radius: 40px;
    transition: 0.3s ease;
}

.navbtn:hover {
    border: 2px solid rgb(77, 77, 77);
}

.nav-links a:hover {
    color: white;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 1rem 0;
        border-radius: 0 0 20px 20px;
    }

    #menu-checkbox:checked+.menu-toggle+.nav-links {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

.title {
    font-size: 80px;
    text-align: center;
    background: #353535;
    background: linear-gradient(to top left, #323232 0%, #ACA3A7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

@media (max-width: 600px) {
    .title {
        font-size: 35px;
    }
}
.title2 {
    font-size: 70px;
    text-align: center;
    background: #353535;
    background: linear-gradient(to top left, #323232 0%, #ACA3A7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

@media (max-width: 600px) {
    .title2 {
        font-size: 35px;
    }
}
.para {
    text-align: center;
    font-size: 16px;
    color: #ACA3A7;
}
@media (max-width: 600px) {
    .para {
        font-size: 12px;
    }
}

.pageimg {
    width: 80%;
    border-radius: 100px;
}

@media (max-width: 600px) {
    .pageimg {
        border-radius: 60px;
        width: 100%;
    }
}
.btn {
    text-decoration: none;
    background-color: #323232a6;
    border: 2px solid rgba(47, 47, 47, 0.71);
    padding: 15px;
    border-radius: 40px;
    transition: all 0.3s ease;
}
.btn:hover {
    box-shadow: 2px 2px rgb(46, 46, 46);
}
.grids {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-gap: 1rem;
}

.grid {
  padding: 1px;
}

@media (min-width: 900px) {
  .grids {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Screen larger than 900px? 3 columns */
@media (min-width: 600px) {
  .grids {
    grid-template-columns: repeat(2, 1fr);
  }
}
.note {
    padding: 20px;
    background-color: #242424d9;
    border-radius: 30px;
    border: 2px solid rgb(33, 33, 33);
}
.img {
    width: 60px;
    mix-blend-mode: color-dodge;
}
.link {
    text-decoration: none;
    background-color: transparent;
}
.pageimg2 {
    width: 40%;
    border-radius: 40px;
}
@media (max-width: 600px) {
    .pageimg2 {
        border-radius: 50px;
        width: 100%;
    }
}
.two {
    width: 70%;
}
.input {
    background-color: #323232a6;
    border: 2px solid rgba(47, 47, 47, 0.71);
    padding: 15px;
    border-radius: 25px;
    margin: 10px;
    width: 70%
}
.input:hover {
     border: 2px solid rgba(136, 136, 136, 0.71);
}
.three {
    width: 50%;
}
@media (max-width: 600px) {
    .three {
        border-radius: 50px;
        width: 80%;
    }
}
.notee {
    background-color: #323232a6;
    border: 2px solid rgba(47, 47, 47, 0.71);
    width: fit-content;
    padding: 15px;
    border-radius: 50px;
}
