@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Oswald:wght@200;300;400;500;600;700&display=swap');

body {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-image: radial-gradient(red, yellow);
 }

 @keyframes bouncing{
     0% { bottom: 0; box-shadow: 0 0 5px rgba(0,0,0,0.5);}
     100%{ bottom: 50px; box-shadow: 0 50px 50px rgba(0,0,0,0.1);}
 }
 .loading-button{ animation: bouncing 0.5s cubic-bezier(0.1,0.25,0.1,1) 0s infinite alternate both;}

* {
    box-sizing: border-box;
}

header {
    display: inline;
}

h1 {
     color: #cb0000;
     font-weight: bolder;
 }

p::first-letter {
    color: inherit;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.jumbotron {
    height: 300px;
    text-shadow: #444 0 1px 1px;
    font-size: 20px;
    padding: 30px;
    background-image: linear-gradient(to bottom right, white, green);
    text-align: center;
    color: rgb(29, 27, 27);
}

nav a {
    font-size: 18px;
    font-family: Helvetica;
    font-weight: 500;
    text-decoration: none;
    color: rgb(24, 24, 24);
}

nav a:hover {
    font-weight: bold;
    color: #212122;
}

nav li {
    display:  inline;
    list-style-type: none;
    margin-right: 30px;
}

nav {
    background-image: linear-gradient(to bottom right, yellow, purple);
    padding: 5px;
    position: sticky;
    top: 0;
}

#content {
    float: left;
    width: 75%;
    text-align: justify;
}

main {
    padding: 20px;
    overflow: auto;
}



h2 {
    color: #212122;
    text-align: left;
    font-weight: bold;
}
  
h3 {
    color: #212122;
    font-weight: 600;
}
  
.card {
    box-shadow: 0 2px 2px 0 rgba(10, 46, 46, 0.466);
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
    overflow: auto;
    background-color: rgb(255, 255, 255);
    color:rgb(48, 48, 48);
    line-height: 1,6em;
    font-size: 100%;
}

img {
    float: left;
    margin: 5px;
}

.featured-image {
    width: 100%;
    max-height: 300px;
}

.subcard {
    border-radius: 5px;
    padding: 10px;
    overflow: auto;
    margin-top: 5px;
    color:rgb(49, 49, 49);
    line-height: 1,5em;
}

.gambarSection {
    width: auto;
}

.profile header {
    text-align: center;
}


aside {
    float: right;
    width: 25%;
    padding-left: 20px;
    text-align: justify;
    font-size: small;
}

footer {
    padding: 5px;
    color: rgb(46, 46, 46);
    background-image: linear-gradient(orange, rgba(224, 140, 28, 0.932));
    text-align: center;
    font-weight: bolder;
}

@media screen and (max-width: 1000px) {
    #content,
    aside {
        width: 100%;
        padding: 0;
        }
}

@media screen and (max-width: 600px) {
    nav a {
    display: list-item;
    }
}
