/*Header*/
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    /* background: #989da5; */
}

header {
    position: fixed;
    top: 0;
    left: 0;
    /* width: 100%; */
    transition: top 0.3s;
    width: 100%;
    height: 7vh;
    background: greenyellow;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header.hide {
    top: -100px;
}

nav ul li {
    list-style: none;
    display: inline-block;
}

nav a {
    text-decoration: none;
    color: black;
    border-radius: 1vw;
    padding: .5rem 1rem;
    transition: .3s ease;
}

nav a:hover {
    background: lawngreen;
}

.logo {
    width: 50px;
    cursor: pointer;
    border-radius: 50px;
    margin: 10px;
}

.menu-icon {
    width: 20px;
    cursor: pointer;
    display: none;
}

section {
    height: 100vh;

}

section h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

span {
    color: green;
}

#Home {
    display: flex;
    justify-content: center;
    align-items: center;
    background: antiquewhite;
}

.button {
    background-color: lawngreen;
    color: black;
    width: fit-content;
    padding: 12px 24px;
    text-align: center;
    display: block;
    margin: 20px 0px;
    text-decoration: none;

    border-radius: 10px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all .3s ease 0s;
    cursor: pointer;
}

.button:hover {
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1s);
    transform: translateY(-7px);
}

#about {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    background: wheat;
}

.column1 img {
    width: 300px;
    margin-right: 30px;
    border-radius: 18px;
}

.paragraphaboutme {
    margin: 25px 0px;
}

.tab-titles {
    display: flex;
}

.tab-links {
    margin-right: 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.tab-links::after {
    content: '';
    width: 0;
    height: 3px;
    background: lawngreen;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: all .3s ease 0s;
}

.tab-links.active-link::after {
    width: 50%;
}

.tab-contents ul li {
    list-style: none;
    margin: 20px 0;
}

.tab-contents ul li span {
    color: darkolivegreen;
    font-size: 15px;
}

.tab-contents {
    display: none;
}

.tab-contents{
.active-tab {
    display: block;
}
}

#projects {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: bisque;
}

.Language {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.Language .Language_Box {
    flex: 30rem;
    background: lightgreen;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: .2px solid grey;
}

.slideshow-container {
    max-width: 500px;
    position: relative;
    margin: 10px;
}

.mySlides img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 8px 15px green;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    color: black;
    top: 45%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 10px 0 0 10px;
}

.prev {
    left: 0;
    border-radius: 0px 10px 10px 0px;
}

.prev:hover,
.next:hover {
    background-color: lightgreen;
}

.numbertext {
    color: white;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.social-links {
    position: fixed;
    bottom: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
}

.social-links img {
    height: 20px;
    margin: 5px;
    cursor: pointer;
}


@media (max-width:700px) {

    #Home {
       padding: 20px;
    }

    
    .column1 {
        margin-top: -8rem;
    }

    #about{
        display: flex;
        flex-direction: column;
        padding-top: 20px;
    }

    #projects {
        display: flex;
        flex-direction: column;
    }

    .Language .Language_Box {
        flex: 20rem;
        padding: .1rem;
    }

    .slideshow-container {
        max-width: 300px;
        position: relative;
        margin: 9px;
        margin-left: 5rem;
    }
}