*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
    scroll-behavior: smooth;
    background-color: #131313;
    color: darkgrey;
    
}

img {
    border-radius: 5%;
}

p {
    color: darkgrey; 
    font-size: 28px; 
    font-family: 'Kumbh Sans', sans-serif; 
    line-height: 3rem; 
    width: 100%;
}

.navbar{
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    /*position: sticky;*/
    top: 0;
    z-index: 999;
}

.navbar_container{
    display:flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
    
}

#navbar_logo{
    background-color: orange;
    background-image: linear-gradient(to top, red 0%, yellow 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold ;
}

.navbar_menu{
    display: flex;
    align-items: center;
    list-style: none;
}

.navbar_item{
    height: 80px;
}

.navbar_links{
    color:white;
    display:flex;
    align-items: center;
    justify-content: center;
    width: 125px;
    text-decoration: none;
    height: 100%;
    transition: all 0.3s ease;
}

.navbar_links:hover{
    color:#9518fc;
    transition: all 0.3s ease;
}

.button{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #833ab4;
    background: -webkit-linear-gradient(to right , #fcb045,#fd1d1d, #833ab4 );
    background: linear-gradient(to right , #fcb045,#fd1d1d, #833ab4 );
    color: #ffff;
    transition: all 0.3s ease;

}

@media screen and (max-width: 960px){
    .navbar_container{
        display:flex;
        justify-content: space-between;
        height:80px;
        z-index: 1;
        width: 100%;
        max-width: 960px;
        padding: 0;
    }

    .navbar_menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position:absolute;
        top: -1000px;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: -1;
        background: #131313;
    }

    .navbar_menu.active {
        background: #131313;
        top: 100px;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height:60vh;
        font-size: 1.6rem;
    }

    #navbar_logo{
        padding-left: 25px;
    }

    .navbar_toggle:hover {
        cursor:pointer;
    }

    .navbar_toggle .bar{
        width:25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
        display: block;
        cursor: pointer;
    }

    .navbar_item{
        width: 100%;
    }

    .navbar_links{
        text-align:center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu{
        position: absolute;
        top: 5%;
        right: 5%;
        transform: translate(5%,20%);
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.main_body {
    display: flex;
    color : white;
    justify-content: flex-start;
    align-items:center;
    min-height: 800px;
    flex-direction: column;
    gap: 10px;
}

.main_body_item {
    /*border: 2px solid white;*/
    min-height: 800px;
    min-width: 100%;
    display: flex;
    align-items:center;
    justify-content: space-around;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    margin: 20px;
    text-align: center;
    
}

.home_title_bar {
    max-height: 400px;
    min-width: 80%;
    display: flex;
    align-items:center;
    justify-content: space-evenly;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap-reverse;
}


#profile_picture_container {
    /*border: 5px solid red;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

#profile_picture {
    max-width: 300px;
    max-height: 300px;
    border-radius: 5%;
}

.home_text_bar{
    max-width: 80%;
    text-align: center;
}

.profile_title {
    min-width: 480px;
    color: darkgrey;
    font-weight: bold;
    font-size: 3rem;
    text-align: center;
}


.project_bar{
    display: flex;
    flex-direction: row;
    width: 80%;
    height: 600px;
    justify-content: center;
    align-items: center;
}

.project_container{
    border: 4px solid darkgrey;
    display: flex;
    flex-direction: column;
    width: 30%;
    min-width: 300px;
    min-height: 580px;
    padding: 30px;
    align-items: center;
    justify-content: space-around;
    border-radius: 5px;

}

.project_screenshot_container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5%;
}

.project_screenshot {
    max-width: 100%;
    max-height: 100%;
}

.project_button {
    width: 100%;
    height: 50px;
    border-radius:5px;
    background-color: darkgrey;
    color: black;
    font-weight: bold;
    padding: 5px;
}

.project_button:hover {
    cursor: pointer;
}

.about_me_pic_container{
    width: 300px;
    height:200px;
    max-width: 96%;
    margin: 4%;
}

img {
    max-width: 100%;
    max-height: 100%;
}

.about_me_container{
    display: flex;
    flex-direction: column;
    width: 50%;
    min-width: 450px;
    min-height: 580px;
    padding: 30px;
    align-items: center;
    justify-content: space-around;
    
}

.about_me_bar{
    border-radius: 5%;
    padding: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    flex-wrap: wrap;
}

form {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 4px solid darkgray;
    min-width: 400px;
}

form input{
    border: 2px solid darkgray;
    min-height: 3rem;
    min-width: 80%;
    margin: 5%;
    padding: 5%
}
form textarea{
    border: 2px solid darkgray;
    min-height: 3rem;
    min-width: 80%;
    margin: 5%;
    padding: 5%;
}

#scroll_up{
    position: fixed;           /* Sticks to viewport */
    bottom: 20px;              /* Distance from bottom */
    right: 20px;               /* Distance from right */
    z-index: 1000;             /* Always on top */
    background-color: lightgrey; /* Button color */
    color: black;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;

}

footer {
    width: 100%;
    height: 100px;
    border-top: 2px solid lightgrey;
    display: flex;
    align-items: center;
    justify-content: center;

}