
body {
    font-family: /*Copperplate,*/ "Lato", sans-serif;
    margin: 0;
    background-color: rgb(236 233 229 / 0.4);
}

* {
    box-sizing: border-box;
}

h1 {
    text-align: center;
}


/* INDEX */

#index_container {
   /* margin-top: 0px;*/
    margin-bottom: 160px;
}


#h1index {

    font-size: 80px;
    text-align: center;
    color: transparent;
    background-image: url(../img/reggae.jpg);
    background-size: contain;
    background-clip: text;
}


#me_container {
    text-align: center;
}

#me_img {

    width: 250px;
    border-radius: 50% 50% 50% 50%;
    filter: grayscale(2);

}

/* About*/

#about_text {
    margin-top: 55px;
    margin-left: 10%;
    margin-right: 10%;
    padding: 15px;
    max-width: 80%;
    background-color: #61aa30;
    border-radius: 10px;
    text-align: center;

}

#lebenslauf {
    color: blue;
    text-decoration: none;
}

#lebenslauf:hover {
    color: white;

    cursor: pointer;
    border-radius: 2px;

}

pre {
    color: #61aa30;
    margin-left: -15px;
    margin-right: 15px;
}

/* SIDENAV*/

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(16 15 15 / 1);
    overflow-y: hidden;
    transition: 3.0s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 23px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #61aa30;
    background-color: rgba(35, 34, 34, 0.5);

}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 30px;
    margin-left: 50px;
}

.openbtn {
    font-size: 30px;
    cursor: pointer;

}



/* FORMULAR */

.form-container {
    margin: auto;
    margin-top: 55px;
    padding: 15px;
    width: 450px;
    height: 400px;
    background-color: #e1dfdf;
    border-radius: 10px;
    text-align:center;


}

/* input field*/
.input {
    padding: 5px;
    text-align:left;
    color: green;
    font-size: 15px;
    width: 260px;
    height: 50px;
    border-radius: 5px;
    border: 1px solid green;
}

.input-message {
    padding: 5px;
    text-align:left;
    font-size: 15px;
    color: green;
    width: 240px;
    height: 50px;
    border-radius: 5px;
    border: 1px solid green;
}




.btn-send {

    margin: 25px 5px;
    color: white;
    background-color: #0b0a0a;
    font-size: 15px;
    padding: 8px 25px;
    border: none;
    border-radius: 5px;
    outline: none;
    cursor: pointer;

}


.btn-send:hover {
    color: white;
    background-color: #61aa30;
    border: none;
}

.btn-cancel {
    margin: 25px 5px;
    color: white;
    background-color: #ba0505;
    font-size: 15px;
    padding: 8px 25px;
    border: none;
    border-radius: 5px;
    outline: none;
    cursor: pointer;

}

.btn-cancel:hover {
    color: white;
    background-color: #8e0202;
    border: none;
}


/* FOOTER */


footer {
    background-color: whitesmoke; /*#2d2d30*/
    color: #777; /*#f5f5f5*/
    padding: 5px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;

}


footer a {
    color: #0b0a0a; /*#f5f5f5*/
    font-size: 25px;

}

footer a:hover {
    color: #61aa30;
    text-decoration: none;
}


#logo_power {
    color: #777;

}

#logo_power img {
    width: 35px;
    height: 35px;
}

#footer-hr {
    color: #61aa30;
}


/* PROJECTS*/

.projects_list {
   /* padding: 10px;*/
    padding-bottom: 180px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.projects {
    width: 250px;
    height: 250px;
    background-image: linear-gradient(red, yellow, green) ;
    opacity: 70%;
    border: 1px solid black;
    text-align: center;
}

#pro1 {
    border-radius: 30px 0 0 0;
}

#pro2 {
    border-radius: 0 30px 0 0;
}

#pro3 {
    border-radius: 0 0 0 30px;
}

#pro4 {
    border-radius: 0 0 30px 0;
}