@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%);
    height: 100vh;
    width: 100vw;
    justify-content: center;
    box-sizing: border-box;
    margin: 0;
    background-image: url(Background.jpg);
    background-size: cover;
}

#mainContent {
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*border: 5px solid #FF7F3E;*/
    padding-left: 2vw;
    padding-right: 2vw;
    padding-top: 2vh;
    padding-bottom: 2vh;
    background-color: transparent;
    filter: blur(0px);
    backdrop-filter: blur(15px);
}

#mainSection {
    display: flex;
    flex-direction: row;
    width: 50vw;
    justify-content:space-evenly;
}

#NameTitle {
    font-size: 7vh;
    color: #CC66DA;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

#CourseInfo {
    font-size: 3vh;
}

#ProfilePic {
    height: 30vh;
    border: 5px solid #CC66DA;
    border-radius: 50%;
    box-shadow:
    0 0 2px #CC66DA,
    0 0 4px #CC66DA,
    0 0 6px #CC66DA,
    0 0 8px #CC66DA;
}

#Navbar {
    display: flex;
    flex-direction: row;
    width: fit-content;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
}

.NavOptions {
    margin-left: 1vw;
    margin-right: 1vw;
    cursor: pointer;
    user-select: none;
    color: #CC66DA;
    border: 3px solid #CC66DA;
    padding: 0.5vh 0.5vw 0.5vh 0.5vw;
    border-radius: 0.75vh;
    font-size: 3vh;
    transition: background-color 0.2s ease-out;
    background-color: #FFF6E9;
}

.NavOptions:hover {
    background-color: #CC66DA;
    color: #FFF6E9;
    transition: background-color 0.2s ease-in;
}

.content {
    display: none;
    width: 50vw;
    font-family: "Poppins", sans-serif;
    font-size: 2.5vh;
    text-align: justify;
    color: aliceblue;
}

.current {
    display: block;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#reachme {
    align-items: center;
}

#about {
    align-items: center;
}

.link {
    color: aliceblue;
}