       body {
    display: flex;
    min-height: 100vh;
    min-width: 100vw;
    flex-direction: column;
    font-family: serif,;
}
@keyframes typing {
    from {
        width: 0;
    }to {
        width: 100%;
    }
}
header h1{
    overflow: hidden;
    border: none;
    white-space: nowrap;
    margin: 0 auto;
    animation:typing 3s steps(40) ;
}

header {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
    flex-wrap: wrap;
}
.dropdown {
    min-width: 15em;
    position: fixed;
    margin: 2em;
    overflow-y: auto;
}
.dropdown {
    box-sizing: border-box;
}
.select {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5em;
    padding: 1em;
    width: 80px;
    position: fixed;
    left: 0px;
    top: 0%;
}
.selected {
    font-size: 50px;
    background: transparent;
    color:gray ;
    border: none;
    cursor: pointer;
    font-weight: bold;
    position: fixed;
    top: 0px;
    left: 5px;
    transition: transform 0.3s;
}
.list {
    list-style: none;
    padding: 0.2em 0.5em;
    background: transparent;
    border-radius: 0.5em;
    color: black;
    width: 80px;
     position: fixed;
    top: 50px;
    left: 0px;
    display: none;
    z-index: 1;
}
.list li{
    background: #F2F3F5;
    margin: 5px;
    font-size: 15px;
    cursor: pointer;
    font-weight: bold;
    color: black;
}
.list  a {
    text-decoration: none;
}
.list li:hover {
    background: #7852FF;
}
main {
    display: flex;
    flex: 1;
}

article {
    flex: 2;
}
article div {
    text-align: left;
    background:#F2F3F5 ;
}
.bar-animated1 {
    width: 0;
    height: 30px;
    background: #5BBCFF;
    text-align: center;
    line-height: 30px;
    color: white;
    animation: progress1 2s forwards;
}

@keyframes progress1 {
    0%{
        width: 0%;
    }100% {
        width:90% ;
    }
}
.bar-animated2 {
    width: 0;
    height: 30px;
    background: #5BBCFF;
    text-align: center;
    line-height: 30px;
    color: white;
    animation: progress2 2s forwards;
}

@keyframes progress2 {
    0%{
        width: 0%;
    }100% {
        width:80% ;
    }
}
.bar-animated3 {
    width: 0;
    height: 30px;
    background: #5BBCFF;
    text-align: center;
    line-height: 30px;
    color: white;
    animation: progress3 2s forwards;
}

@keyframes progress3 {
    0%{
        width: 0%;
    }100% {
        width:60% ;
    }
}
aside {
    padding: 20px;
    background: #F5DAD2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pendidikan, .pelajari, .contact {
    font-weight: bold;
}
.profil {
    background:#F2F3F5;
    border-radius: 20px;
}
.profil h1 {
    font-size: 30px;
    text-align: center;
}
.wrap li {
    list-style: none;
}

@media(max-width:767px){
    .bmi, .loginpage, .idcard, #foto{
        width: 200px;
    }
    header, footer {
        width: 500px;
    }
}


@media(min-width:768px){
    .bmi, .loginpage, .idcard, #foto {
        width: 400px;
    }
}

#project1, #project2, #project3 {
    display: flex;
    justify-content: center;
    padding: 20px;
}

 .linkproject1, .linkproject2, .linkproject3{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: underline;
    color: blue;
    cursor: pointer;
}
.heading1, .heading2, .heading3 {
    text-align: center;
    justify-content: center;
    align-items: center;
}
footer {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
}