@import url('https://fonts.googleapis.com/css2?family=Lekton&display=swap');

body {
    margin: 0;
    font-family: Lekton, Cochin, Georgia, Times, 'Times New Roman', serif;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    height: 70px;
    z-index: 10;
}

a {
    text-decoration: none;
    color: black;
}

.line-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden;
}

.line-section {
    position: relative;
}

section {
    /* min-height: 100vh; */
    /* display: grid; */
    font-size: 2rem;
    /* place-content: center; */
}

#bio-name {
    height: 100vh;
    display: grid;
    place-content: center;
    text-align: center;
}

#section1 {
    display: grid;
    place-items: center;
}


section:nth-child(even) {
    background-color: rgb(232, 227, 214);
}

#section1 p {
    background-color: rgba(88, 131, 131, .3);
    background-color: rgba(232, 227, 214, .9);
    color: rgb(0, 0, 0);
    z-index: 2;
    text-align: center;
    font-size: 1.5rem;
}


#section1,
#section2,
#section3 {
    place-content: inherit;
    text-align: center;
}

#section2,
#section3 {
    padding-top: 3rem;
}

#section1 {
    display: flex;
    justify-content: center;
    height: 100vh;
}

#section2 {
    margin-bottom: 5rem;
}

#section3 {
    height: 100%;
    padding-bottom: 50px;
}

#section3 p {
    font-size: 1.5rem;
}



#svg1,
#svg2,
#svg3 {
    position: fixed;
    top: 0;
    left: 0;
    /* z-index: 1; */
    height: 100%;
    width: 100%;
    color: aliceblue;
    display: inline-block;
    opacity: 0;
}



#svg2 {
    /* width 100% in desktop */
    width: 150%;
    height: 100vh;
}

#svg3 {
    height: 50%;
    top: 50%;
}

.slider-wrapper {
    margin: 1rem;
    position: relative;
    overflow: hidden;
    opacity: .9;
}

.slides-container {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: scroll;
    border: 2px solid black;
    background-color: rgb(220, 217, 209);
    padding: 50px 0;
}

.slide-arrow {
    position: absolute;
    display: flex;
    top: 50%;
    transform: translateY(50%);
    margin: auto;
    height: 4rem;
    background-color: white;
    border: none;
    width: 2rem;
    font-size: 3rem;
    padding: 0;
    cursor: pointer;
    opacity: .7;
    transition: opacity 100ms;
}

.slide-arrow:hover,
.slide-arrow:focus {
    opacity: 1;
}

#slide-arrow-prev {
    left: 0;
    padding-left: 0.25rem;
    border-radius: 0 2rem 2rem 0;
    color: black;
}

#slide-arrow-next {
    right: 0;
    padding-left: 0.75rem;
    border-radius: 2rem 0 0 2rem;
    color: rgb(0, 0, 0);
}

.slide {
    width: 100%;
    height: 100%;
    flex: 1 0 100%;
}


.slide p {
    font-size: 1rem;
    padding: .5rem;
}

.slide img {
    width: 100%;
    opacity: .8;
}

.links a {
    padding-top: 50px;
    width: 50px;
    display: inline-block;
    padding: 5px;
}

.skills-wrapper {
    width: 100%;
    height: 100%;
    margin-top: 3rem;
    opacity: .9;

}

.skills-container {
    display: inline-block;
    background-color: rgb(220, 217, 209);
    text-align: center;
    border: 2px solid black;
    margin: 0 1rem;
    padding: 10px;
}

.skills-container img {
    width: 3rem;
}

.skills {
    font-size: 1rem;
    background-color: rgb(220, 217, 209);
}

strong {
    -webkit-text-stroke-width: .4px;
    -webkit-text-stroke-color: rgb(0, 0, 0);
}


.contact {
    width: 100%;
    display: flex;
    justify-content: center;
}

form {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
}

input {
    border-radius: 50px;
    margin-bottom: 20px;
    border-width: .2px;
}

textarea {
    border-radius: 10px;
    margin-bottom: 20px;
    height: 200px;
}

.contact form {
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    text-align: center;
    z-index: 1;
    width: 70%;
}

#name,
#email {
    width: 100%;
    height: 30%;
    font-size: 16px;
}

form button {
    background-color: rgb(255, 255, 255);
    color: black;
    border-width: .2px;
    border-radius: 20px;
    width: 30%;
    text-align: center;
}


@media only screen and (min-width: 600px) {

    .bio,
    .creations,
    .slides-container,
    .skills-container {
        max-width: 70vh;
        display: inline-block;
    }

    .slide {
        padding-bottom: 50px;
    }

    #svg2 {
        width: 100%;
    }

    .contact form {
        width: 30%;
    }
}