
@import url('https://fonts.googleapis.com/css?family=Ubuntu+Mono');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth; 
    align-items: flex-end;
    background-color: #232533; 
}


.section {
    height: 75vh; 
    display: flex;
    justify-content: center;
    align-items: center;
}


#page1 {
    background-image: url(../images/background_mountain.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: white;
    display: flex;
    flex-direction: row;
    font-size: 30px;

}

.item-left {
    text-align: left;
    padding: 100px;
    flex: 50%;
}

.item-left > p {
    font-size: 22px;
}

.item-right {
    flex: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.terminal {
    background-color: #181923;
    width: 360px;
    height: 480px;
    border-radius: 5px;
    box-shadow: 10px 10px 5px #1b1c2a;
    position: relative;
    z-index: 9999;
}


.image_close {
    position: absolute;
    top: 2px;
    right: 2px;
}



.output {
    font-family: 'Ubuntu mono';
    font-size: 19px;
    white-space: pre;
    text-align: left;
    padding-top: 45px;
    padding-left: 30px;
}


.command {
    color: #568200; 
}

.ls-command {
    color: #ABACAB; 
}

.file {
    color: #ffffff; 
}


#page2 {
    background-color: #232533; 
    color: white;
    position: relative;
}

#page2 h2 {
    text-align: center;
    margin: 0 auto;
    position: absolute;
    top: 20%;
}


.container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

}
.container > div{
    background-color: #323445;
    box-shadow: 10px 10px 5px #1b1c2a;
    border-radius: 7px;
    margin: 20px;
    width: 6em;
    height: 6em;
    justify-content: center;
    align-items: center;
    display: flex;
    animation: flexup 1.5s ease-in-out forwards;
    opacity: 0;
}
.container > div:nth-child(1)  { animation-delay: 0s; }
.container > div:nth-child(2)  { animation-delay: 0.2s; }
.container > div:nth-child(3)  { animation-delay: 0.4s; }
.container > div:nth-child(4)  { animation-delay: 0.6s; }
.container > div:nth-child(5)  { animation-delay: 0.8s; }
.container > div:nth-child(6)  { animation-delay: 1s; }
.container > div:nth-child(7)  { animation-delay: 1.2s; }
.container > div:nth-child(8)  { animation-delay: 1.4s; }
.container > div:nth-child(9)  { animation-delay: 1.6s; }
.container > div:nth-child(10) { animation-delay: 1.8s; }
.container > div:nth-child(11) { animation-delay: 2s; }
.container > div:nth-child(12) { animation-delay: 2.2s; }
.container > div:nth-child(13) { animation-delay: 2.4s; }
.container > div:nth-child(14) { animation-delay: 2.6s; }
.container > div:nth-child(15) { animation-delay: 2.8s; }
.container > div:nth-child(16) { animation-delay: 3s; }


@keyframes flexup {
    0% {
        transform: translateY(100px); /* Start below */
        opacity: 0; /* Hidden at the start */
    }
    100% {
        transform: translateY(0); /* Move to original position */
        opacity: 1; /* Fully visible at the end */
    }
}


.container > h1 {
    color: #fec158;
}


#page3 {
    background-color: #323445; 
    color: white;
    height: auto;
}


#page3 h1 {
    position: relative;
    left: 10%;
}





.timeline {
    width: 800px;
    color: #ffffff;
    margin: 0 auto;
}

.timeline ul {
    list-style-type: none;
    border-left: 2px solid #232533;
    padding: 10px 5px;
}

.timeline ul li {
    padding: 20px 20px;
    position: relative;
    transition: .5s;
    background-color: #181923;
    box-shadow: 10px 10px 5px #1b1c2a;
    margin-bottom: 20px;
    border-radius: 5px;
}

.timeline ul li span {
    display: inline-block;
    background-color: #323445;
    border-radius: 25px;
    padding: 2px 5px;
    font-size: 15px;
    text-align: center;
}

.timeline ul li .content h3 {
    color: #fec158;
    font-size: 17px;
    padding-top: 5px;
}

.timeline ul li .content p {
    padding: 5px 0px 15px 0px;
    font-size: 15px;
}

.timeline ul li:before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #fec158;
    border-radius: 50%;
    left: -11px;
    top: 28px;
    transition: .5s;
}

@media (max-width: 300px) {
    .timeline {
        width: 100%;
        padding: 30px 5px 30px 10px;
    }

    .timeline ul li .content h3 {
        color: #34ace0;
        font-size: 15px;
    }
}
























/* Footer styling */
footer {
    background-color: #232533;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative; /* Ensure it's below the last section */
}




@media (max-width: 800px) {
    #page1 {
      flex-direction: column;
    }
    .section {
        height: auto;
    }
    .terminal {
        height: 430px;
        width: 300px;
    }
    #page3 h1 {
        opacity: 0;
    }
    #page2 h2 {
        top: 5%;
    }
    .container {
        margin-top: 100px;
    }
  }

