html {
    font-family: Arial, Helvetica, sans-serif;
}

body {
    padding: 0px;
    margin: 0px;
    overflow-x: hidden;
}


#menuContiner {
    position: fixed;
    width: 100vw;
    height: 90px;
    background-color: black;
    top: 0px;
    z-index: 1;
}

#menuContiner h1{
    position: absolute;
    top: 25px;
    left: 40px;
    color: white;
    margin: 0px;
}

.ancorContainer {
    position: absolute;
    top: 30px;
    right: 40px;
}

.ancorContainer a{
    text-decoration: none;
    font-size: 25px;
    margin: 20px;
    color: white;
}

.ancorContainer a:hover{
    border-bottom: 1px solid yellow;
    color: yellow;
}




header {
    width: 100vw;
    height: 100vh;
    background-color: black;
    text-align: center;
}

header h1{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20vw;
    height: 240px;
    top: 30vh;
    left: 32vw;
    color: black;
    background-color: yellow;
    animation: h1fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes h1fadeInAnimation {
    0% {
        opacity: 0;
        top: 40vh;
    }
    100% {
        opacity: 1;
        top: 30vh;
    }
}

header div {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22vw;
    height: 200px;
    top: 54vh;
    left: 40vw;
    font-size: 30px;
    background-color: rgb(212, 212, 0);
    animation: divfadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes divfadeInAnimation {
    0% {
        opacity: 0;
        top: 64vh;
    }
    100% {
        opacity: 1;
        top: 54vh;
    }
}



#contentContiner {
    width: 100vw;
    height: auto;
}

.contentBox {
    position: relative;
    width: 100vw;
    height: 700px;
}

.contentBox img{
    position: absolute;
    height: 100%;
    width: auto;
    right: 0px;
}

.gradientBox {
    position: relative;
    display: flex;
    width: 80vw;
    height: 700px;
}

.blackbox {
    width: 20vw;
    height: 100%;
    background-color: black;
}

.gradient {
    width: 60vw;
    height: 100%;
    background: linear-gradient(to left, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
}

.infoBox {
    position: absolute;
    bottom: 80px;
    left: 70px;
    width: 40vw;
    height: 500px;
    background-color: rgba(5, 5, 5, 0.685);
    transition: 0.3s;
}

.type {
    position: absolute;
    top: 5px;
    left: 40px;
    color: white;
    opacity: 0;
    transition: 0.3s;
}

.prodjectTitle {
    position: absolute;
    display: flex;
    align-items: center;
    margin: 0px;
    top: 80px;
    left: 5vw;
    height: 70px;
    font-size: 40px;
    color: white;
    transition: 0.2s;
}

.prodjectInfo {
    position: absolute;
    display: flex;
    align-items: center;
    width: 50vw;
    height: 380px;
    left: 7vw;
    top: 120px;
    color: white;
    font-size: 18px;
    opacity: 0;
    transition: 0.3s;
}

.buttonContainer {
    position: absolute;
    display: flex;
    bottom: 40px;
    right: 10vw;
    width: auto;
    opacity: 0;
    transition: 0.3s;
}

.buttonContainer a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100px;
    margin-left: 40px;
    color: yellow;
    background-color: black;
    border: 1px solid yellow;
    border-radius: 20px;
}

.buttonContainer a:hover{
    color: black;
    background-color: yellow;
}





#aboutMeContiner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100vw;
    height: auto;
    max-height: 800px;
    background-color: rgb(48, 48, 48);
}

.aboutTextBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 50vw;
    padding: 30px;
    margin-top: 10px;
    margin-bottom: 20px;
    background-color: yellow;
    box-shadow: 10px 10px rgb(212, 212, 0);
}

#aboutMeContiner img{
    width: 20vw;
    max-width: 350px;
    height: auto;
    margin-top: 25px;
    margin-bottom: 30px;
    border: 10px solid yellow;
    box-shadow: 15px 15px rgb(212, 212, 0);
    object-fit: cover;
}



footer {
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 400px;
    background-color: black;
}

.footerBox {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 80vw;
    max-width: 1000px;
    height: 100%;
}

.footerBox h3{
    color: white;
}

.footerBox p{
    font-size: 18px;
    margin-left: 20px;
    color: white;
}

.footerBox a img{
    position: absolute;
    height: 30px;
    right: 0px;
}


@media only screen and (max-width: 1000px) {
    #aboutMeContiner {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-around;
        align-items: center;
        width: 100vw;
        height: auto;
        max-height: none;
        background-color: rgb(48, 48, 48);
    }
    
    .aboutTextBox {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
        width: 50vw;
        padding: 30px;
        margin-bottom: 40px;
        background-color: yellow;
        box-shadow: 10px 10px rgb(212, 212, 0);
    }
    
    #aboutMeContiner img{
        width: 40vw;
        height: 40vw;
        border: 10px solid yellow;
        border-radius: 20vw;
        box-shadow: none;
        margin-top: 0px;
        margin-bottom: 0px;
        margin: 25px;
    }
  }


@media only screen and (max-width: 800px) {
    
    #menuContiner h1{
        top: 30px;
        left: 30px;
        font-size: 25px;
    }
    
    .ancorContainer {
        top: 35px;
        right: 20px;
    }
    
    .ancorContainer a{
        font-size: 20px;
        margin: 10px;
    }



    header h1{
        width: 30vw;
        left: 20vw;
    }

    header div{
        width: 35vw;
        left: 40vw;
        font-size: 20px;
    }


    .contentBox {
        height: 600px;
    }

    .gradientBox {
        width: 85vw;
        height: 600px;
    }

    .gradient {
        width: 80vw;
    }

    .infoBox {
        height: 450px;
        width: 70vw;
        bottom: 75px;
        left: 20px;
    }

    .type {
        font-size: 16px;
    }

    .prodjectTitle {
        font-size: 30px;
        top: 90px;
    }

    .prodjectInfo {
        width: 70vw;
        left: 8vw;
        top: 80px;
        font-size: 16px;
    }
    
    .buttonContainer {
        bottom: 30px;
    }

    .buttonContainer a{
        width: 120px;
        height: 70px;
        margin-left: 30px;
    }



    .aboutTextBox {
        font-size: 14px;
    }

    #aboutMeContiner img{
        border: 5px solid yellow;
    }
  }



@media only screen and (max-width: 500px) {
    #menuContiner {
        height: 60px;
    }
    
    #menuContiner h1{
        top: 20px;
        left: 8px;
        font-size: 18px;
    }
    
    .ancorContainer {
        top: 22px;
        right: 5px;
    }
    
    .ancorContainer a{
        font-size: 15px;
        margin: 5px;
    }



    header h1{
        width: 40vw;
        height: 180px;
        top: 25vh;
        left: 20vw;
    }

    @keyframes h1fadeInAnimation {
        0% {
            opacity: 0;
            top: 40vh;
        }
        100% {
            opacity: 1;
            top: 25vh;
        }
    }

    header div{
        width: 42vw;
        height: 100px;
        top: 50vh;
        left: 40vw;
    }

    @keyframes divfadeInAnimation {
        0% {
            opacity: 0;
            top: 64vh;
        }
        100% {
            opacity: 1;
            top: 50vh;
        }
    }



    .contentBox {
        height: 400px;
    }

    .gradientBox {
        height: 400px;
    }

    .infoBox {
        height: 350px;
        width: 65vw;
        bottom: 25px;
        left: 0px;
    }

    .prodjectTitle {
        font-size: 25px;
        top: 95px;
    }

    .type {
        font-size: 14px;
    }

    .prodjectInfo {
        align-items: start;
        width: 75vw;
        left: 8vw;
        top: 100px;
        font-size: 14px;
    }
    
    .buttonContainer {
        bottom: 20px;
    }

    .buttonContainer a{
        width: 100px;
        height: 30px;
        margin-left: 20px;
        font-size: 14px;
    }



    .aboutTextBox {
        width: 70vw;
        box-shadow: 5px 5px rgb(212, 212, 0);
    }

    #aboutMeContiner img{
        width: 50vw;
        height: 50vw;
        border: 5px solid yellow;
        border-radius: 25vw;
    }
}