/* CSS */


:root {
    --nav-logo-size: 150px
}

body {
    color: white;
    position: relative;
    background-color: #000;
    font-family: 'Work Sans', sans-serif;
}

.container {
    padding-left: 80px;
    padding-right: 80px;
    margin: 8rem 0;
}

h1 {
    font-size: 50pt;
    letter-spacing: -3px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

h2 {
    font-size: 40pt;
    letter-spacing: -2px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.navlogo {
    width: var(--nav-logo-size);
    height: var(--nav-logo-size);
}

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    max-width: 100%;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    padding: 8px 100px;
    backdrop-filter: blur(36px);

}

hr {
    color: #303030;
}

#index {
    display: flex;
    width: 100%;
}

.navlinks {
    display: flex;
    list-style-type: none;
    justify-content: space-evenly;
    flex-grow: 1;
}

.navlinks a {
    font-size: 16pt;
    font-weight: 500;
    text-decoration: none;
    color: white;
    transition: all;
    transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

a:hover {
    letter-spacing: 2px;
    color: #e11fff;
}



.aboutandprofile {
    display: flex;
    align-items: center;
}

#myname {
    font-family: 'Poppins', 'sans-serif';
}

#aboutcontainer {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#profilecontainer {}

#profilecontainer img {
    border-radius: 100vh;
    overflow: hidden;
}

.videoandcaption {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

#myvideo {
    height: 500px;
    border-radius: 20px;
}

.contacts {
    text-align: center;
}

#contact-me {
    display: flex;
    justify-content: center;
    gap: 6rem;
}

#contact-me a img {
    width: 80px;
}

.projectdiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8rem;
    margin: 4rem 0;
}

.projectimage img {
    width: 400px;
    border-radius: 16px;
}

.formcontainer {
    width: 100%;
}

.hobbiesform {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 20pt;
}

.hobbiesform input[type='button'] {
    max-width: 500px;
    min-width: 200px;
    padding: 4px;
    background-color: white;
    color: #e11fff;
    border-radius: 8px;
    font-size: 16pt;
    font-weight: 600;
    border: none;
    margin-top: 2rem;
}