/** DEFAULT CSS: TAMPILAN DESKTOP */
html{
    background-color: whitesmoke;
    background-image: url('kotak-kotak.jpg');
}

body{
	margin: 0;
	padding: 0;   
}

.page-wrapper { 
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    position: relative;
    padding-top: 200px;
    bottom: 70px;
    text-align: justify;
}

nav{
    background-color: black;
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: space-between;
    top: 0px;
    right: 0px;
    left: 0px;
    z-index: 1;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
    from {
      text-shadow: 0 0 10px #eeeeee, 0 0 20px #000000, 0 0 30px #000000, 0 0 40px #000000, 
                   0 0 60px #7464B4, 0 0 70px #7464B4, 0 0 80px #7464B4;
    }
    to {
      text-shadow: 0 0 20px #eeeeee, 0 0 30px #35EC6E, 0 0 40px #35EC6E, 0 0 50px #35EC6E, 
                   0 0 60px #35EC6E, 0 0 70px #35EC6E, 0 0 80px #35EC6E;
    }
}

.nav-logo-title{
    background-image: url(https://manta.io/hubfs/Manta_an_IBM_Company_lockup_pos_color_RGB-01.svg);
    width: 115px;
    height: 100px;
    background-size: cover;
    border-right: solid white;
}

.nav-logo-title a{
    color: #35EC6E;
    text-decoration: none;
    position: absolute;
    left: 130px;
    line-height: 100px;
    font-size: 30px;
}

.nav-logo-title a:hover{
    text-decoration: underline;
    font-size: 32px;    
}

.nav-logo-title img{
    visibility: hidden;
}

nav ul{
    list-style: none;
    display: flex;
    flex: 0.5;
    align-items: center;
    justify-content: right;
    margin-right: 30px;
}

nav ul li{
    padding-left: 30px;
    padding-right: 30px;
}

nav ul li a{
    text-decoration: none;
    font-size: 17px;
    color: #35EC6E;  
}

nav ul li a:hover{
    text-decoration: underline;
    font-size: larger;
}

.header-texts:hover{
    box-shadow: 0 0 50px 15px #3EC83E;
}

.header-texts{
    padding: 5px;
    border: solid #3EC83E; 
    border-radius: 10px;
    background-color: #000000;
    color: white;
    text-align: center;
    margin-bottom: 100px;
    margin-top: 100px; 
    margin-left: 250px;
    margin-right: 250px; 
    justify-content: space-between;
}

h1{
    font-size: 30px;
    color: #3EC83E;
    text-decoration: underline white;
}

h2{
    font-size: 20px;
}

h3{
    font-size: 18px;
}

h4{
    font-size: 16px;
}

p{
    font-size: 14px;
}

abbr{
    text-decoration: underline;
    color: #3EC83E;
}

.header-filler{
    margin-bottom: 100px;
    border-bottom: solid #35EC6E;
    margin-left: 40px;
    margin-right: 40px;
    -webkit-animation: glowline 1s ease-in-out infinite alternate;
    -moz-animation: glowline 1s ease-in-out infinite alternate;
    animation: glowline 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glowline {
    from {
        text-shadow: 0 0 10px #eeeeee, 0 0 20px #000000, 0 0 30px #000000, 0 0 40px #000000, 
                     0 0 60px #7464B4, 0 0 70px #7464B4, 0 0 80px #7464B4;
      }
      to {
        text-shadow: 0 0 20px #eeeeee, 0 0 30px #35EC6E, 0 0 40px #35EC6E, 0 0 50px #35EC6E, 
                     0 0 60px #35EC6E, 0 0 70px #35EC6E, 0 0 80px #35EC6E;
      }
}

.content{
    margin-right: 300px;
    margin-left: 50px; 
    display: flex;
    background-color: #000000;
    color: white;
    border: solid #35EC6E;
    border-radius: 20px;
    box-shadow: 0px 0px 15px #35EC6E; 
    width: 1200px;
    height: 465px;
    padding: 2%;
    flex: 1;
}

.content-first{
    float: left;
    padding: 1rem;
    border-radius: 15px;
    border: solid #35EC6E;
}

.content-second{
    padding: 0.5rem;
    border-radius: 15px;
    border: solid #35EC6E;
}

aside{
    float: right;
    position: relative;
    bottom: 530px;
    right: 50px;
    background-color: #000000;
    color: white;
    width: fit-content;
    height: 515px;
    right: 25px;
    border-radius: 20px;
    box-shadow: 0px 0px 25px #35EC6E; 
    border: solid #35EC6E;
    padding: 5px;
}

aside h2{
    text-align: center;
    padding-top: 70px;
}

aside ul li{
    list-style: none;
}

aside ul li a{
    text-decoration: none;
    color: #35EC6E;
    text-align: left;
}

aside ul li a:hover{
    text-decoration: underline;
    font-size: larger;
}

.row-first{
    display: flex;
    flex: 1;
}

.articles{
    padding: 10px;
}

.article{
    padding: 20px;
    background-color:black;
    color: white;
    border-radius: 10%;
    text-align: justify;
    border: solid #35EC6E;
    box-shadow: 0px 0px 25px #35EC6E;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex: 1;
    margin: 5px;
    margin-top: -500px;
}

.article img{
    content: url('turu.jpg');
    width: 440px;
    max-width: 440px;
    height: auto;
    border-radius: 10%;
    padding-top: 2%;
}

.article a{
    text-align: center;
    color: #35EC6E;
    text-decoration: none;
}

.article a:hover{
    font-size: larger;
    text-decoration: underline;
}

.row-second{
    text-align: justify;
    color: white;
    display: flex;
    justify-content: space-between;
    margin: 5px;
    background-color: #000000;
    border: solid #35EC6E;
    border-radius: 10px;
    box-shadow: 0 0 15px #35EC6E;
    margin-top: 100px;
    padding-left: 10px;
    animation: MoveUpDown 1s linear infinite;
    position: relative;
    left: 0;
    bottom: 0;
}

@keyframes MoveUpDown {
    0%, 0% {
      bottom: 0;
    }
    0% {
      bottom: 50px;
    }
}

.row-second:hover{
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

.article-long{
    padding: 10px;
    height: fit-content;
    margin-top: 30px;
    margin-right: 60px;
    margin-left: 60px;
}

.row-second img{
    content: url('css\ javascript.jpg');
    min-width :200px;
    max-width: 300px;
    height: auto;
    margin: 5px;
    margin-right: 60px;
}

.row-second img:hover{
    box-shadow: 0 0 35px #35EC6E;
}

.creativity-wrapper{
    text-align: justify;
    margin-top: 50px;
    display: flex;
    flex: 1;
}

.creativity{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex: 1;
    overflow: hidden;
    position: relative;
    transform: translate(100%);
    animation: move 20s linear infinite;
}

@keyframes move {
    to {
      transform: translate(0);
    }
  }

  .creativity:hover{
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
  }

.mini-one{
    padding: 20px;
    background-color:black;
    color: white;
    border-radius: 10%;
    text-align: justify;
    border: solid #35EC6E;
    box-shadow: 0px 0px 25px #35EC6E;
    width: 25%;
    margin-right: 15px;
}

.mini-one img{
    content: url('btc\ naik.jpg');
    max-width: 100%;
    max-height: auto;
}

.mini-two{
    padding: 20px;
    background-color:black;
    color: white;
    border-radius: 10%;
    text-align: justify;
    border: solid #35EC6E;
    box-shadow: 0px 0px 25px #35EC6E;
    width: 25%;
    margin-right: 15px;
}

.mini-two img{
    content: url('gmt\ naik.jpg');
    max-width: 100%;
    max-height: auto;
}

.mini-three{
    padding: 20px;
    background-color:black;
    color: white;
    border-radius: 10%;
    text-align: justify;
    border: solid #35EC6E;
    box-shadow: 0px 0px 25px #35EC6E;
    width: 25%;
    margin-right: 15px;
}

.mini-three img{
    content: url('hedera\ naik.jpg');
    max-width: 100%;
    max-height: auto;
}

.mini-four{
    padding: 20px;
    background-color:black;
    color: white;
    border-radius: 10%;
    text-align: justify;
    border: solid #35EC6E;
    box-shadow: 0px 0px 25px #35EC6E;
    width: 25%;
    margin-right: 15px;
}

.mini-four img{
    content: url('manta\ naik.jpg');
    max-width: 100%;
    max-height: auto;
}

footer{
    background-color: #000000;
    clear: both;
    width: 100%;
    position: absolute;
    margin-top: 50px;
}

footer{
    padding: 0px;
}

.footer-logo, .footer-form, .footer-credit{
    padding-left: 15px;
    padding-bottom: 10px;
    width: 30%;
    float: left;
    color: white;
}

.footer-logo{
    text-align: center;
}

.footer-form{
    padding-left: 50px;
    padding-right: 50px;    
    border-left: 3px solid #35EC6E;
    border-right: 3px solid #35EC6E;
}

.footer-credit{
    text-align: justify;
}


@media screen and (max-width: 1280px) {
    .content {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        padding: 10px;
        height: auto;
    }

    .article img {
        width: 100%;
    }

    .header-texts {
        margin-left: 50px;
        margin-right: 50px;
    }
}

@media screen and (max-width: 1024px) {
    .nav-logo-title a {
        left: 90px;
        font-size: 24px;
    }

    nav ul li {
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-texts {
        margin-left: 30px;
        margin-right: 30px;
    }

    aside {
        width: 100%;
        position: relative;
        bottom: 0;
        right: 0;
        height: auto;
    }

    .row-second img {
        max-width: 200px;
    }
}

@media screen and (max-width: 912px) {
    .nav-logo-title a {
        left: 70px;
        font-size: 20px;
    }

    nav ul {
        flex-direction: column;
        margin-right: 0;
    }

    nav ul li {
        padding-left: 5px;
        padding-right: 5px;
    }

    .content {
        flex-direction: column;
    }

    .article {
        margin-top: 0;
    }

    .creativity-wrapper {
        flex-direction: column;
    }

    .creativity {
        transform: translate(100%);
        animation: move 15s linear infinite;
    }
}

@media screen and (max-width: 768px) {
    .nav-logo-title a {
        font-size: 18px;
        left: 60px;
    }

    .header-texts {
        margin-left: 20px;
        margin-right: 20px;
    }

    .content {
        margin-left: 20px;
        margin-right: 20px;
        padding: 5px;
    }

    .mini-one, .mini-two, .mini-three, .mini-four {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .footer-logo, .footer-form, .footer-credit {
        width: 100%;
        float: none;
        padding-left: 0;
        padding-right: 0;
    }

    .footer-form {
        border-left: none;
        border-right: none;
    }
}

@media screen and (max-width: 540px) {
    nav ul {
        flex-direction: column;
    }

    .nav-logo-title a {
        font-size: 16px;
        left: 50px;
    }

    .header-texts {
        margin-left: 10px;
        margin-right: 10px;
    }

    .content {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .creativity-wrapper {
        flex-direction: column;
    }

    .creativity {
        transform: translate(100%);
        animation: move 10s linear infinite;
    }

    .footer-logo, .footer-form, .footer-credit {
        width: 100%;
        float: none;
    }
}

@media screen and (max-width: 414px) {
    .nav-logo-title a {
        font-size: 14px;
        left: 40px;
    }

    .header-texts {
        margin-left: 5px;
        margin-right: 5px;
    }

    .content {
        margin-left: 5px;
        margin-right: 5px;
    }

    .mini-one, .mini-two, .mini-three, .mini-four {
        width: 100%;
        margin-right: 0;
    }

    .footer-logo, .footer-form, .footer-credit {
        width: 100%;
        float: none;
    }
}

@media screen and (max-width: 375px) {
    .nav-logo-title a {
        font-size: 12px;
        left: 30px;
    }

    .header-texts {
        margin-left: 2px;
        margin-right: 2px;
    }

    .content {
        margin-left: 2px;
        margin-right: 2px;
    }

    .mini-one, .mini-two, .mini-three, .mini-four {
        width: 100%;
        margin-right: 0;
    }

    .footer-logo, .footer-form, .footer-credit {
        width: 100%;
        float: none;
    }
}