html {
    scroll-behavior: smooth;
}

body {
    background-image: url(./elements/img1.jpg);
    background-repeat: repeat;
    background-color: rgb(64, 62, 62);
    background-size: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100%;
    height: 1000px;
}

* {

    margin: 0;
    padding: 0;
    font-family: 'Poppins', san s-serif;
    color: white;
}

.nav {
    background-color: rgb(0, 0, 0);
    position: sticky;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    width: 100%;
    z-index: 2;
}
header{
    position: fixed;
    width: 100%;
    z-index: 3;
}

main{
    z-index: 0;
}
.nav .name {
    margin: 1.5rem 2rem;
}

.options {
    margin: 1.5rem 2.5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

.options a {
    margin-right: 2rem;
    text-decoration: none;
    color: white;
    font-size: 1.25rem;
}

.options a:hover {

    transition-duration: 1s;
    transition-delay: 2ms;
    background-color: rgb(58, 56, 56);
}

.navbar {
    position: fixed;
}

.options ul li {
    list-style-type: none;
    text-decoration: none;
}

main {
    position: relative;
    top: 110px;
    padding: 80px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

main .sec1 h1 {
    font-size: 3.4rem;
    font-weight: bolder;
}

main section {
    margin: 30px;
}

main .sec1 span {
    color: rgb(0, 255, 153);
}

main .sec1 h2 {
    font-size: 2.8rem;
}

footer {
    position: relative;
    padding: 30px 125px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .left-footer div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.left-footer div h1 {
    position: relative;

}



footer .right-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 200px 10px;
    position: relative;
}

.right-footer button {

    margin-top: 10px;
    align-self: center;
}

.right-footer input {

    width: 240px;
    height: 30px;
    background-color: rgba(67, 63, 63, 0.259);
    border-radius: 0.5rem;
    text-align: center;

    font-size: 1rem;
}

.right-footer h4 {
    margin: 0.5rem;
}

.right-footer textarea {

    background-color: transparent;
    border-radius: 0.5rem;
    text-align: center;
    border: 1px solid white;
    overflow-x: hidden;
    font-size: 15px;

}

.sec3 {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    width: 85%;
}

.sec3 .skills {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

}

.skills {
    width: 95%;
}

.skill-logo img {
    height: 4rem;
    margin: 8px;
}

.skill-logo img:hover {
    transition-duration: 1s;
    transition-delay: 2ms;
    box-shadow: -2px -2px 6px 2px inset black;
}

/* .skill-logo audio {
    height: 100px;
    background-color: white;
} */

.contact-links {
    display: flex;
    flex-direction: row;

    align-items: center;
}

.contact-links img {
    height: 70px;
    padding: 1rem;
    margin: -5px;
}