@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
}
.container {
  font-size: 20px;
  padding: 60px;
  background-color: rebeccapurple;
  text-align: center;
  color: #fff;
}
nav {
  background-color: slateblue;
  padding: 5px;
  position: sticky;
  top: 0;
}
nav a {
  font-size: 18px;
  font-weight: 200px;
  text-decoration: none;
  color: #fff;
}
nav a:hover {
  font-weight: bold;
}
nav li {
  display: inline;
  list-style-type: none;
  margin-right: 20px;
}
header {
  display: inline;
}
main {
  padding: 20px;
  overflow: auto;
}
h2 {
  color: darkmagenta;
}
h3 {
  color: darkmagenta;
}
.box {
  box-shadow: 0 4px 8px burlywood;
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
}
.add-image {
  width: 45%;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
}
.add-image2 {
  width: 45%;
  max-height: 650px;
  object-fit: cover;
  object-position: center;
}
.profile header {
  text-align: center;
}
.profile-image {
  width: 5px;
}
footer {
  padding: 20px;
  color: white;
  background-color: indigo;
  text-align: center;
  font-weight: bold;
}
button {
  background: rebeccapurple;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 5px;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
}
button:hover {
  background: orange;
}
.active {
  background-color: orange;
  color: white;
}
footer a:hover {
  font-weight: bold;
}
button .sosmed {
  width: 2%;
  max-height: 2%;
  object-fit: contain;
  object-position: center;
}
footer li {
  display: inline;
  list-style-type: none;
  margin-right: 20px;
}
#content-utama {
  float: left;
  width: 75%;
}
aside {
  float: right;
  width: 25%;
  padding-left: 20px;
}
@media screen and (max-width: 1000px) {
  #content,
  aside {
    width: 100%;
    padding: 0;
  }
}
