@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0;
    overflow: hidden auto;
}

a {
    text-decoration: none;
}

.bd-home, .bd-aboutme, .bd-projects, .bd-projectoverview, .bd-contact {
    background-image: linear-gradient(300deg, #92fe9d92 0%, #00c8ff92 33%, #92fe9d92 66%, #00c9ff92 100%), linear-gradient(200deg, #92fe9d 0%, #00c9ff 33%, #92fe9d 66%, #00c9ff 100%);
    background-size: 500% 500%;
    background-position: center;
}

.bd-projectoverview {
    background-repeat: repeat-y;
    background-size: 800% 800%;
}

.bd-home {
    overflow-y: hidden;
}

h1, h2, h3, h4, h5, h6, p, a, button, input, textarea, label {
    font-family: "Poppins", sans-serif;
}


.bd-home .home-content {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.bd-home h1 {
    color: black;
    margin: 0 0 0 25px;
    font-size: 60px;
    font-weight: 800;
}    

.bd-home p {
    color: black;
    margin: -20px 0 0 25px;
    font-size: 25px;
}

.bd-home .buttongroup {
    margin: 0 0 0 25px;
}

.bd-home .buttongroup button {
    padding: 0 10px 0 10px;
    height: 35px;
    font-size: 18px;
    font-weight: 700;
    background-color: #015332;
    color: white;
    transition: 0.3s;
    cursor: pointer;
    border: none;
}

.bd-home .buttongroup button:hover {
    background-color: #007a49;
}

.bd-home .languagebutton {
    margin: 20px 0 0 25px;
} 

.bd-home .languagebutton button {
    padding: 0 10px 0 10px;
    height: 35px;
    font-size: 18px;
    font-weight: 700;
    background-color: #015332;
    color: white;
    transition: 0.3s;
    cursor: pointer;
    border: none;
}

.bd-home .languagebutton button:hover {
    background-color: #007a49;
}

.sidemenu {
    width: fit-content;
}

.sidemenu a {
    text-decoration: none;
    color: black;
    font-weight: 800;
}

.sidemenu a p.active {
    color: #00752f;
}

.sidemenu a p {
    margin: 0 0 0 0;
    font-size: 23px;
    text-align: left;
    transition: 0.3s;
}

.socialbar {
    margin: 0 0 0 25px;
    height: 50px;
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0;
}

.socialicon {
    fill: black;
    height: 30px;
    padding: 0 5px;
    transition: 0.3s;
}

.socialicon:hover {
    fill: rgb(187, 187, 187);
}

.bd-aboutme h1, .bd-aboutme p {
    text-align: center;
    color: black;
}

.bd-aboutme .content, .bd-projectoverview .content {
    width: 75%;
    display: block;
    margin: 0 auto;
}

.bd-projectoverview .content {
    width: 70%;
}

.bd-aboutme .content img, .projectoverview_img {
    width: calc(50% - 42px);
    height: auto;
    margin: 0 20px;
}

.bd-projects h1 {
    text-align: center;
    color: black;
}

.bd-projects .projectblock {
    color: white;
    width: 75%;
    display: block;
    margin: 10px auto;
    background-color: #007a49;
    height: 100px;
}

.bd-projects .projectblock .section-img {
    width: 200px;
    height: inherit;
    float: left;
    background-size: cover;
    background-position: center;
}

.bd-projects .projectblock .section-1 {
    float: left;
    display: flex;
    flex-flow: column;
    justify-content: center;
    height: 100%;
    padding: 0 10px;
    width: 45%;
    background-color: #015332;
}

.bd-projects .projectblock h2 {
    margin: 0 0 0 5px;
    font-size: 25px;
    font-weight: 800;
}

.tags p {
    margin: 0 5px;
    background-color: #3c91e6c5;
    backdrop-filter: blur(2px);
    padding: 0 5px;
    height: 22px;
    display: inline-block;
    font-size: 14px;
    border-radius: 5px;
    color: white !important;
}

.bd-projects .projectblock p.description {
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 15px 10px;
    height: 60px;
}

.bd-projectoverview {
    background-position: top center;
    background-repeat: no-repeat;
    height: 100vh;
}

.bd-projectoverview h1, .bd-projectoverview p {
    text-align: center;
    color: black;
}

.bd-projectoverview .tags {
    display: inline-block;
    width: fit-content;
}

.bd-contact .content {
    text-align: center;
}

.bd-contact form {
    width: 50%;
    margin: 0 auto;
}

.bd-contact label {
    font-weight: bold;
    text-align: left;
    width: 100%;
    display: block;
    margin: 0;
}

.bd-contact input {
    display: block;
    font-weight: normal;
    background-color: rgb(246, 246, 246);
    border: 1px gray;
    border-radius: 0;
    width: 100%;
    padding: 10px;
    margin: 0 auto;
    box-sizing: border-box;
}

.bd-contact textarea {
    display: block;
    font-weight: normal;
    background-color: rgb(246, 246, 246);
    border: 1px gray;
    border-radius: 0;
    width: 100%;
    padding: 10px;
    margin: 0 auto;
    resize: vertical;
    box-sizing: border-box;
}

.bd-contact button {
    width: 100%;
    box-sizing: border-box;
    height: 50px;
    font-weight: 800;
    background: black;
    color: white;
    transition: 0.5s;
    cursor: pointer;
}

.bd-contact button:hover {
    background: rgb(62, 62, 62);
}
/* Positioning Parameters */
.menu-fixed {
    position: fixed;
    top: 20px;
    left: 20px;
}

.poweredbytxt {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 0 10px 10px 0;
    color: black;
    font-size: 12px;
}

.poweredbytxt img {
    height: 60px;
}

.bottom-fixed {
    position: fixed;
    bottom: 0;
}

.m_navbar {
    display: none;
    background-color: black;
    width: 100%;
    height: 60px;
    position: fixed;
    bottom: 0;
}

.m_navbar a {
    height: 60px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    text-transform: none;
    width: 24%;
    justify-content: center;
}

.m_navbar .active {
    color: #00c8ff92;
}

.m_nav_spacer {
    height: 70px;
}

.bd-projectoverview .content .title-tags-container {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    margin-bottom: 0px;
}

#projectTitle {
    display: inline-block;
    margin-right: 20px;
}

#project-description-intro, #projectTitle {
    text-align: left;
}

#project-description-intro {
    margin-top: -20px;
}

.project-content-container {
    width: 100%;
    display: grid;
    align-items: center;
    margin: 15px auto;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin-top: 20px;
}

.project-content-container img {
    width: 32vw;
    height: auto;
    margin-right: 10px;
}

.project-content-container p {
    margin-left: 10px;
    text-align: start;
}

@media only screen and (max-width: 900px) {
    .sidemenu a p {
        margin: 0 0 0 0;
        font-size: 18px;
        text-align: left;
    }

    .content {
        width: 90%;
        margin: 0 auto;
    }

    .socialicon {
        height: 25px;
    }

    .bd-projects .projectblock .section-img {
        display: none;
    }

    .section-2 {
        display: flex;
        justify-content: start;
        align-items: center;
    }

    .bd-home .home-content {
        height: 100vh;
        width: 100vw;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
    
    .bd-home h1 {
        color: black;
        margin: 0 0 0 0;
        font-size: 60px;
        font-weight: 800;
        text-align: center;
    }  

    .bd-home p {
        color: black;
        margin: -20px 0 0 0;
        font-size: 25px;
    }
    
    .bd-home .buttongroup {
        margin: 0 0 0 0;
    }

    .bd-home .languagebutton {
        margin: 20px 0 0 0;
    } 
    
    .bd-contact form {
        width: 75%;
    }
}

@media only screen and (max-width: 750px) {
    .sidemenu a p {
        margin: 0 0 0 0;
        font-size: 16px;
        text-align: left;
    }

    .content {
        width: 70%;
        margin: 0 auto;
    }

    .socialicon {
        height: 20px;
    }

    .bd-projects .projectblock h2 {
        margin: 0 0 0 5px;
        font-size: 22px;
        font-weight: 800;
    }

    .bd-projects .tags p {
        margin: 0 5px;
        background-color: #3c91e6c5;
        backdrop-filter: blur(2px);
        padding: 0 5px;
        height: 16px;
        display: inline-block;
        font-size: 11px;
        border-radius: 5px;
    }

    .bd-projects .projectblock p.description {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        padding: 15px 10px;
        height: 60px;
    }
}

@media only screen and (max-width: 600px) {
    .sidemenu a p {
        display: none;
    }

    .content {
        width: 95%;
        margin: 0 auto;
    }

    .socialicon {
        display: none;
    }

    .m_navbar {
        display: block;
    }

    .bd-projects .projectblock h2 {
        margin: 0 0 0 5px;
        font-size: 18px;
        font-weight: 800;
    }

    .bd-home h1 {
        color: black;
        margin: 0 0 0 0;
        font-size: 50px;
        font-weight: 800;
        text-align: center;
    }  

    .bd-aboutme .content img, .projectoverview_img {
        width: 70%;
        display: block;
        height: auto;
        margin: 10px auto;
    }
}

/* Animation Classes */
.anim_gradientbg {
    animation-name: gradientbackground;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}