*{
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}


body{
    background-color: rgb(182, 193, 255);
}

.header{
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header h1{
    color: rgb(158, 174, 255);
    size: 35px;
}

.menu{
    background-color: rgb(205, 213, 255);
}

.menu ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.menu ul li{
    float: left;
}

.menu ul li a{
    display: block;
    color: white;
    text-align: center;
    justify-content: center;
    padding: 14px 16px;
    text-decoration: none;
}

.menu ul li a:hover {
    color: rgb(150, 180, 250);
    transition: 500ms;
}

.kontainer{
    display: flex;
}

.sidebar1{
    background-color: rgb(205, 213, 255);
    width: 15%;
    height: 600px;
    padding: 50px;
}

.sidebar2{
    background-color: rgb(205, 213, 255);
    width: auto;
    height: auto;
}

.sidebar2 img{
    width: 200px;
    max-height: 600px;
}

.sidebar1 ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: auto;
}

.sidebar1 ul li a{
    color: white;
    display: block;
    padding: 8px 0 8px 16px;
    text-decoration: none;
}

.sidebar1 ul li a:hover{
    color: rgb(150, 180, 250);
    transition: 500ms;
}

.konten{
    background-color: rgb(182, 193, 255);
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    height: auto;
    padding: 50px 50px;
}

.konten a{
    color: white;
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.konten .box{
    background-color: aliceblue;
    border-radius: 20px;
    width: 200px;
    height: 250px;
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.konten .box img{
    width: 180px;
    height: 240x;
}

.footer{
    display: flex;
    background-color: rgb(152, 167, 253);
    height: 210px;
    justify-content: center;
    align-items: center;
}

.footer a{
    color: white;
}

