/* font style */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

body {
    padding: 0;
    margin: 0;
    border: 0;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

/* navbar */
nav {
    display: flex;
    position: fixed;
    width: 100vw;
    justify-content: center;
    align-items: center;
    margin-top: 1.2rem;
}
nav a {
    font-weight: 600;
    text-decoration: none;
    color: white;
    background-color: rgba(0, 0, 0, 0.171);
    text-align: center;
    border-radius: 5px;
    padding: 5px 10px;
}
nav a:hover {
    color: #ffd701;
    background-color: rgba(0, 0, 0, 0.445);
    border-radius: 5px;
    padding: 5px 10px;
}

/* saat di hover akan berubah */
/* Nav Profil */
/* .profil::before {
    content: "PROFIL";
    position: static;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255, 255, 255);
    font-size: 1.3rem;
}

.profil:hover::before {
    content: "MUHAMMAD NARENDRA AULIA JATI";
    color: #ffd701;
} */
 .profil a {
    margin-left: 5px;
    margin-right: 5px;
 }


/* Home */
.home {
    background-color: #212529;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
}
.home h1 {
    width: 100vw;
    text-align: center;
    color: #ffd701;
    width: 600;
    font-size: 4rem;
    cursor: default;
}

footer {
    background-color: #2b3035;
    width: 100vw;
    font-size: 10px;
    font-weight: 400;
    text-align: center;
    color: white;
}

footer a {
    
    text-decoration: none;
    color: white;
}

footer a:hover {
    text-decoration: underline;
}

/* Brackpoint Mobile */
   @media (max-width: 768px) {
    
    nav {
        display: flex;
    }

    .home h1 {
        width: 100vw;
        text-align: center;
        color: #ffd701;
        width: 600;
        font-size: 2.5rem;
    }
}