@font-face {
    font-family: 'Roboto_Condensed-ExtraLight';
    src: url('../fonts/Roboto_Condensed-ExtraLight.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueThin';
    src: url('../fonts/HelveticaNeueThin.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    opacity: 0;
    background: #fafafa;
    margin: 0;
    overflow-y: hidden;
    overflow-x: hidden;
    user-select: none;
    font-family: 'HelveticaNeueThin', sans-serif;
    transition: 1s;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-bar {
    position: absolute;
    padding-top: 0.1vw;
    padding-left: 0.1vw;
    display: flex;
    flex-direction: row;
    gap: 0.1vw;
    z-index: 4;
}

.nav-bar a {
    transition: 0.3s;
    text-decoration: none;
}


.projects-button {
    display: flex;
    flex-direction: row;
    border: 0.01px solid;
    border-radius: 0.3vw;
    background-color: #f2f2f2;
    border-color: #d3d3d3;
    width: 10vw;
    height: 6.3vh;
    justify-content: flex-start;
    align-items: flex-end;
}

.nav-button {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    border: 0.1vw solid;
    border-radius: 0.3vw;
    background-color: #f2f2f2;
    border-color: #d3d3d3;
    width: 5.3vw;
    height: 6.3vh;
    z-index:2;
}

.nav-bar h2 {
    padding-left: 0.4vw;
    font-size: 0.5vw;
    font-weight: 600;
    color: #a9a9a9;
}

.nav-bar a :hover
{
    cursor: pointer;
}

.selected {
    color: #131313 !important;
}

#about_me
{

    padding-top: 20vh;
    display:flex;
    height:60vh;
    flex-direction: row;
    max-width:70vw;
    padding-left:15vw;
}

.self-photo img
{
    height:100vh;
    width:auto;
    pointer-events: none;
}

.description
{
    padding-top:5vh;
    transition: 0.5s;
    opacity: 0;
}
.description-header
{
    gap:0.8vw;
    display:flex;
    font-size:1.5vw;
    font-weight: bolder;   

}

.name
{
    color:#ffc0cb;
}

.description-text
{

    max-width:81.90%;
    text-align: justify;
    
}

.showcase
{
    display:grid;
    max-width: 90%;
    grid-template-columns: 33% 33% 33%;
    grid-template-rows:5vh 30vh;
    grid-auto-flow: row;

}

.showcase h2 
{
    color:pink;
    font-size:2vh;
    font-weight: 400;
    font-family: 'Helvetica', sans-serif;
}

.responsibilities-desc
{
    white-space: normal;
    font-size:1.5vh;
}

.responsibilities-desc p { 
    margin: 0;
    padding: 0;
}

.responsibilities {
    grid-area: 2 / 1 / 3 / 2;
    display:flex;
    flex-direction: column;
    gap:1vh;
}

.responsibilites-header
{
    grid-area: 1 / 1 / 2 / 2;
}

.competitions-desc 
{
    white-space: normal;
    font-size: 1.5vh;
}

.competitions-desc p 
{
    margin: 0;
    padding: 0;
}

.competitions 
{
    padding-left:1.5vw;
    grid-area: 2 / 2 / 3 / 3;
    display: flex;
    flex-direction: column;
    gap: 1vh;
}

.competitions-header
{
    padding-left:1.4vw;
    grid-area: 1 / 2 / 2 / 3;
}

.awards-desc {
    white-space: normal;
    font-size: 1.5vh;
}

.awards-desc p {
    margin: 0;
    padding: 0;
}

.awards {
    grid-area: 2 / 3 / 3 / 4;
    display: flex;
    flex-direction: column;
    gap: 1vh;
}

.awards-header {
    grid-area: 1 / 3 / 2 / 4;
}


#contact-page {
    opacity: 0;
    z-index: 3;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: 1s;
}

.contact-buttons {
    display: flex;
    gap: 0.3vw;
}

#contact-page a {
    pointer-events: auto;
    background-color: rgba(128, 128, 128, 0.4);
    text-decoration: none;
    color: black;
    border: 1px solid rgba(128, 128, 128, 0.4);
    border-radius: 5px;
    padding: 10px;
}


#contact-page a:hover {
    cursor: pointer;
}

.page {
    transition: 1s;
}

.blur {
    transition: 1s;
    pointer-events: none;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}