body{
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace, 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif, 'Arial Narrow', Arial, sans-serif, Helvetica, sans-serif;
}

nav{
    display: flex;
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 70px;
    align-items: center;
    justify-content: space-around;
    background-color: white;
    border-bottom: 1px solid rgb(245, 245, 245);
    opacity: 80%;
}

.logo{
    display: flex;
    align-self: center;
    /* background-color: blue; */
}

.logo a{
    text-decoration: none;
    color: #222;
}

.menu ul {
    display: flex;
    list-style-type: none;
    width: 300px;
    justify-content: space-between;
    /* background-color: aqua; */
}

.menu ul a{
    text-decoration: none;
    color: rgb(116, 116, 116);
    font-weight: 500;
    font-size: 12px;
}

.menu ul a:hover{
    color: #222;
    border-bottom: 1px solid #222;
}

.menu a.email-me{
    padding: 8px 20px;
    border: 2px solid #222;
    color: #222;
    transition: 0.4s all;
}


.menu a.email-me:hover{
    padding: 8px 20px;
    border: 2px solid #222;
    color: #fff;
    background-color: #222;
    
}

.tengah {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: aqua; */
}

.foto {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    /* background-color: blue; */
    overflow: hidden;
}

.foto img{
    left: -10px;
    position: relative;
    width: 400px;
}

.hi {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: aliceblue; */
    position: relative;
    top: -120px;
}

.hi h1{
    font-size: 120px;
    font-weight: bold;
    /* background-color: blue; */
    text-shadow: 6px -6px 0px #fff;
}

.hi h3{
    /* background-color: brown; */
    font-size: 60px;
    font-weight: 100;
    position: relative;
    top: -130px;
}

.menu-gambar a{
    text-decoration: none;
}

.mhs {
    margin-top: -30px;
}

.menu-gambar{
    /* background-color: aqua; */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: -220px;
}

.menu-box{
    
    width: 150px;
    height: 150px;
    /* background-color: red; */
    margin: 0 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 1s all;
    cursor: pointer;
}

.menu-box img{
    background-image: url("img/paijo2.jpg");
    width: 200px;
    position: relative;
    top: -30px;
    left: 0;
    filter: grayscale(50%);
    transition: 0.5s all;
    /* overflow: hidden; */
}

.menu-box img:hover{
    filter: grayscale(70%);
    width: 300px;
}

.title-box{
    position: relative;
    z-index: 99;
    font-weight: 600;
    color: #fff;
    top: 80px;
}

.about-tengah{
    width: 100%;
    margin: 100px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-tengah img{
    width: 700px;
    margin: 2px auto;
}

.about-tengah p {
    text-align: center;
    color: #222;
}

.paragraf{
    /* background-color: aqua; */
    width: 60%;
}

.footer{
    display: flex;
    position: relative;
    width: 100%;
    height: 70px;
    margin-top: 100px;
    align-items: center;
    justify-content: space-around;
    background-color: white;
    border-top: 1px solid rgb(245, 245, 245);
    opacity: 80%;
}