body {
    background-color: #f2f2f2;
    font-family: Arial, Helvetica, sans-serif;
}

.navbar {
    display: grid;
    grid-auto-flow: column;
    overflow-x: auto;
    white-space: nowrap;
    position: fixed;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    padding: 20px 0;
    z-index: 1000;
}


.navbarleft a {
    color: white;
    padding: 25px 20px;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.navbarleft a:hover {
    background-color: #575757;
    border-radius: 10px;
    transform: scale(1.05);
}



.home {
    margin-right: 50px;
}

.content {
    margin-top: 70px;
}

.biodata {
    display: flex;
    align-items: flex-start;
    background-color: white;
    max-width: 700px;
    width: 90%;
    margin: auto auto auto auto;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 20px;
}

.biodata img {
    height: auto;
    width: 50%

}

.biodata h2 {
    border-bottom: 5px solid black;
    text-align: center;
    padding-block: 10px; 
}

.biodata h4 {
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
    padding-bottom: 10px;
}

.biodata h2:last-child {
    border-bottom: none;
}

.biodata h4:last-child {
    border-bottom: none;
}