@import url('https://fonts.googleapis.com/css?family=Quicksand:400,700&display=swap');
* {
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand',sans-serif;
    margin: 0;
    padding: 0;
    /* background-color: #A2DBFA; */
}

html{
    scroll-behavior: smooth;
}

.jumbotron {
    font-size: 20px;
    padding: 60px;
    text-align: center;
    color: #053742;
}

header {
    display: inline;
}

nav {
    background-color: #053742;
    padding: 5px;
    position: sticky;
    top: 0; 
}

nav a {
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    color: white;
}

nav a:hover {
    font-weight: bold;
}

nav li {
    display: inline;
    list-style-type: none;
    margin-right: 20px;
}

main {
    padding: 20px;
    overflow: auto;
    background: url("../image/sapikambing.png") right bottom no-repeat;
}

h2, h3 {
    color: #053742;
}

h2 ~ p{
    text-align: justify;
}

.profile header {
    text-align: center;
}

.featured-image {
    width: 60%;
    object-fit: cover;
    object-position:center;
    display: block;
    margin: auto;
    border: solid #053742;
}

.profile img {
    width: 200px;
}

.card {
    min-height: 400px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
    background-color: #E8F0F2;
    overflow: hidden;
}

#content {
    float: left;
    width: 75%;
}

aside {
    float: right;
    width: 25%;
    padding-left: 20px;
}

label{
    font-weight: bold;
}

table{
    border-left: lightseagreen solid;
    background-color: lightyellow;
}

@media screen and (max-width: 1000px) {
    #content,
    aside {
        width: 100%;
        padding: 0;
    }
 }

footer {
    padding: 20px;
    color: white;
    background-color: #053742;
    text-align: center;
    font-weight: bold;
}

.box-image{
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    width: 150px;
}

figure > img:hover {
    box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}

.pic{
    float: right;
    width: 30%;
}

.text{
    float: left;
    text-align: justify;
}

.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #053742;
  color:white;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.btn{
    background-color:bisque;
    text-decoration: none;
    padding: 2px;
    color: darkslategrey;
    font-weight:bold;
    border:solid;
    width: 90%;
    margin: 10px;
    float: left;
}
a:hover{
    background-color:deepskyblue;
}
