*,
html {
    margin: 0;
    padding: 0;
}
body{
    background-color: #0af;
}
.content{
    background-color: whitesmoke;
}
.li{
    color: white;
    display: inline-block;
    font-size: larger;
    margin: 5px;
    padding: 10px;

}
.li:hover{
    color: orange;
    transition: .4s ease-in-out;

}
img{
    /* salah satu cara supaya konten posisinya di tengah */
    display: block;
    margin: auto;
    /* Gambar menjadi responsif: bisa pakai max-width: (480/600/1500)px / auto */
    max-width: auto;
}
h1{
    text-align: center;
    margin-top: 4px;
    font-family: Helvetica;
}
/* Menghias button */
.button{
    font-family: sans-serif;
    font-size: 15px;
    background: #22a4cf;
    color: white;
    border: white 3px solid;
    border-radius: 5px; /* membuat sudut yang awalnya tegak lurus menjadi melingkar */
    padding: 12px 20px;
    margin-top: 10px;
    display: block;
    margin: auto;
}
.button:hover{
    opacity:0.9;
}
/* Mengatur dan mendesain layout */
.layout{
    background: chartreuse;
    height: 80px;
}
.sidebarleft{
    background: orange;
	float: left;	
	width: 25%;
	height: 100%;
}
.sidebarright{
	background: red;
	float: left;
	height: 100%;
	width: 75%;
}
.kotak {
    align-items: center;
    position: relative;
    width: 25%;
    background: whitesmoke;
    }
    
.kotak:after {
    content: "";
    display: block;
    padding-bottom: 50%; /* pengganti height */
    }
    
.textarea {
    margin-top: 2px;
    background-color: bisque;
}