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

h1{
    font-size: 6rem;
    font-weight: 500;
}

h2{
    font-size: 3rem;
    font-family: Barlow;
    font-weight: 400;
}

h3{
    font-size: 2.2rem;
    font-weight: 200;
}

h4{
    font-size: 2.2rem;
    font-weight: 300;
}

h5{
    font-size: 1.8rem;
    font-weight: 200;
}

h6{
    font-size: 1.6rem;
    font-weight: 200;
}

div{
    font-size: 1.6rem;
}

.faded {
    color: rgb(179, 179, 179);
    cursor: pointer;
}

.home-flex-main {
    display: flex;
    padding: 0rem 0rem 10rem 0rem;
    justify-content: space-between;
    align-items: center;
    height: 73vh;
    margin: 0rem;
}

#circle-container{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex: 2;
    margin-left: 4rem;
    padding: 0rem 0rem 0rem 0rem;
    transform: rotate(0deg);
}

.circle{
    border: 30px solid rgb(255, 255, 255);
    border-radius: 10px;
    width: 8rem;
    height: 8rem;
    transition: 1s ease-out;
    font-size: 3rem;
    text-align: center;
    color: var(--text-color);
    transform: rotate(-90deg);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 255, 255, 0);
}

.circle:hover{
    width: 20rem;
    height: 20rem;
    border-width: 80px;
    background-color: rgb(255, 255, 255, 0);
    transform: rotate(0deg);
    cursor: pointer;
    border-color: white;
    /*box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.719);*/
    border-radius: 30px;
}

.circle-hover{
    border: 5px solid var(--magenta);
    width: 20rem;
    height: 20rem;
    background-color: rgb(255, 255, 255, 0);
    transform: rotate(0deg);
    border-radius: 50px;
    transition: 1s ease-out;
    text-align: center;
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    /*box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.719);*/
    border-radius: 30px;
}

.circle-hover:hover{
    cursor: pointer;
}

.c1{
    animation: cAnim ease 3s 0s 1;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgb(50, 50, 50);
    background-color: rgb(179, 179, 179);
}

@keyframes cAnim{
    50%{
        width: 18rem;
        height: 18rem;
        border-width: 70px;
        transform: rotate(90deg);
        border-radius: 30px;
    }
    100%{
        transform: rotate(270deg);
    }
}

.c2{
    animation: cAnim ease 3s .2s 1;
    border-color: rgb(50, 50, 50);
    background-color: rgb(179, 179, 179);
}

.c3{
    animation: cAnim ease 3s .4s 1;

    border-color: var(--magenta);
    border-color: white;
    background-color: var(--magenta);
    background-color: rgba(255, 255, 255, 0);
}
.c3:hover{
    border-color: rgb(255, 71, 234);
    background-color: rgb(255, 255, 255);
}

.pulse{
    animation: pulse ease .5s alternate infinite;
}
@keyframes pulse {
    0% {
        background-color: rgba(255, 255, 255, 0);
    }
    100% {
        background-color: var(--magenta);
    }
}

#home-text-container{
    flex: 1.3;
    min-width: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: left;
    text-align: left;
    margin-right: 4rem;
    animation: fadeSlideIn ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    position: relative;
    left: 10rem;
}

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        left: 40rem;
    }
    100% {
        opacity: 1;
        left: 2rem;
    }
}

.home-text{
    width: 80%;
    max-width: 332px;
    max-width: 400px;
    margin: 0px 0rem;
    line-height: 4rem;
    font-size: 2.3rem;
    font-family: 'Barlow';
    color: var(--text-color);
    font-weight: bolder;
}

#greeting {
    color: var(--text-color);
    font-size: 3rem;
    font-weight: 500;
    font-weight: bolder;
    margin-bottom: 10px;
    height: 40px;
}

#subgreeting {
    /*font-family: 'Noto Sans Mono', 'Sometype Mono', monospace;
    font-size: 2rem;*/
}

.lettuce {
    font-family: 'Gajraj One', sans-serif;
    font-family: 'Anton', sans-serif;
    font-family: 'Bebas Neue', sans-serif;
    font-family: 'Staatliches', sans-serif;
    font-family: 'Pixelify Sans', sans-serif;
    font-family: inherit;
    color: var(--lettuce);
}
.lettuce:hover {
    padding-top: 5px;
}

#menu-side{
    position: fixed;
    top: 30%;
    left: 2%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    text-transform: lowercase;
    height: 120px;
    transition: left 1s, opacity 1s;
    background-color: rgba(57, 57, 57, 0.712);
    z-index: 100;
    border-radius: 10px;
    padding: 15px 10px;
    height: 240px;
    opacity: 0%;
    display: none;
}

#cover{
    position: absolute;
    width: 60vw;
    height: 60vh;
    z-index: 10;
    background-color: paleturquoise;
    opacity: 0%;
}

.icon{
    font-size: 3rem; 
    color: white;
    pointer-events: auto;
}

.icon:hover{
    cursor: pointer;
    color: var(--magenta);
    background-color: transparent;
}

#email{
    font-size: 6rem;
    margin: 1rem;
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
    margin: 0.9rem;
    padding: 0;
    transition: 3s ease;
    transform: scale(.0);
    animation: popup ease 2s 0s 1 normal forwards;
}
@keyframes popup{
    40%{
        transform: scale(.0);
    }
    60%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}

#linkedin{
    font-size: 6rem;
    margin: 1rem;
    grid-row: 1 / span 1;
    grid-column: 2 / span 1;
    margin: 0.9rem;
    transition: 3s ease;
    transform: scale(0);
    animation: popup ease 2s .2s 1 normal forwards;
}

#github{
    font-size: 6rem;
    margin: 1rem;
    grid-row: 2 / span 1;
    grid-column: 1 / span 1;
    margin: 0.9rem;
    transition: 3s ease;
    transform: scale(0);
    animation: popup ease 2s .4s 1 normal forwards;
}

#question{
    font-size: 6rem;
    margin: 1rem;
    grid-row: 2 / span 1;
    grid-column: 2 / span 1;
    margin: 0.9rem;
    transition: 3s ease;
    transform: scale(0);
    animation: popup ease 2s .6s 1 normal forwards;
}

.contact{
    display: none;
    transition: 1s ease-out;
    pointer-events: none;
}

#contact1{
    transition: 3s ease;
    transform: scale(.0);
    animation: popup ease 2s 0s 1 normal forwards;
    font-size: 4rem;
}

#contact2{
    transition: 3s ease;
    transform: scale(.0);
    animation: popup ease 2s 0s 1 normal forwards;
}

#contact3{
    display: none;
    flex-wrap: wrap;
    grid-auto-flow: row;
    align-items: center;
    justify-content: center;
}

#con1{
    font-size: 6rem;
}
#con2{
    font-size: 6rem;
}
#con3{
    font-size: 6rem;
}
#con4{
    font-size: 6rem;
}

.section-title{
    font-size: 2.8rem;
    font-weight: 300;
    position: relative;
    transition: top 1s, opacity 2s;    
    
    font-family: 'Sometype Mono', monospace;
    font-family: 'Noto Sans Mono', 'Sometype Mono', monospace;
}

#projects-title{
    top: 200px;
    opacity: 0%;
    transition: top 1s, opacity 2s;
    font-size: 2.4rem;
}

#see-more-projects {
    position: relative;
    top: -30px;
    text-align: left;
    padding: 0;
    margin: 0 13rem;
    height: 20px;
    font-size: 2.4rem;
}

#projects{
    padding: 120px 100px 100px 100px;
}

.project-container{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row-reverse;
    margin-left: 20%;
    margin-bottom: 0;
    position: relative;
    top: 100px;
    opacity: 0%;
    transition: top .75s, opacity .75s;
}

@media (max-width: 1250px){
    .project-container{
        margin-left: 25%;
    }
}
@media (max-width: 1150px){
    .project-container{
        margin-left: 30%;
    }
    .descrip{
        width: 260px;
    }
}
@media (max-width: 900px) {
    .project-container{
        flex-wrap: wrap-reverse;
        margin-top: 0;
    }
    .image{
        top: 50px;
    }
    .descrip-box{
        width: 600px;
    }
    .descrip{
        width: 500px;
    }
}

.title{
    font-size: 5rem;
    margin: 2rem 0rem;
    
    font-family: 'Arvo', 'Josefin Sans', 'Rokkitt', 'Sanchez';
    font-family: 'Sometype Mono', monospace;
    font-family: 'Noto Sans Mono', 'Sometype Mono', monospace;

    font-family: 'Anton', sans-serif;
    font-family: 'Bebas Neue', sans-serif;
    font-family: 'Staatliches', sans-serif;
}

.type{
    text-transform: uppercase;
    margin: 1.5rem 0rem;
    font-weight: 300;
    color:rgb(148, 148, 148);

    font-family: 'Noto Sans Mono', 'Sometype Mono', monospace;
}

.date{
    color: var(--cyan);
    font-weight: 400;
    margin: 1rem 0rem;

    font-family: 'Noto Sans Mono', 'Sometype Mono', monospace;
}

.award{
    font-size: 1.5rem;
    font-weight: 600;
    margin: 10px 0 5px 0;
    cursor: pointer;
    transition: 1s ease;
    color: var(--magenta);
}
.award:hover {
    color: var(--magenta);
}

.descrip{
    font-weight: 300;
    margin: 0;
    /*font-family: 'Noto Sans Mono', 'Sometype Mono', monospace;
    font-size: 1.4rem;*/
}

.image{
    width: var(--width);
    height: calc(var(--width) * 2 / 3);
    /*box-shadow: 0px 5px 15px rgba(128, 128, 128, 0.719);*/
    border-radius: 5px;
    transition: 1s ease;
    transform: translateX(-100px);
    background: 0px 0px/100% 100% no-repeat;
    margin-bottom: 5rem;
    z-index: 0;
    flex: none;
    position: relative;
}

@media (max-width: 1100px) {
    .image{
        width: var(--minwidth);
        height: calc(var(--minwidth) * 2 / 3);
        left: 30px;
    }
    .image-over2{
        top: calc(var(--minwidth) * 2 / -3) !important;
    }
    .white-hover{
        top: calc(var(--minwidth) * 4 / -3) !important;
    }
}

.image-over{
    background: 0px 0px/100% 100% no-repeat;
    width: 100%;
    height: 100%;
    opacity: 0%;
    transition: 1s ease;
    margin: 0;
    padding: 0;
    z-index: 50;
    position: relative;
    border-radius: 5px;
}

.image-over2{
    top: calc(var(--width) * 2 / -3);
}

.white-hover{
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0%;
    transition: .8s ease;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-family: Montserrat;
    font-weight: 900;
    z-index: 100;
    position: relative;
    top: calc(var(--width) * 4 / -3);
}

.white-hover:hover{
    opacity: 50%;
    cursor: pointer;
}

.descrip-box{
    position: relative;
    left: -100px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 0;
}

.dots{
    position: relative;
    display: flex;
    width: 350px;
    align-items: center;
    justify-content: space-between;
    left: -60px;
}

.hex{
    position: relative;
    top: -10px;
    left: -5px;
    border: 1px solid rgba(255, 255, 255, 0);
    background-color: rgb(255, 255, 255, 0);
    width: 100px;
    height: 100px;
    transform: rotate(45deg);
    z-index: 100 !important;
}

.dot{
    border: 1px solid rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0);
    width: 15px;
    height: 15px;
    border-radius: 100px;
    transition: .5s ease;
}

.dot:hover{
    cursor: pointer;
}

.right-arrow{
    position: relative;
    left: 30px;
    font-size: 3rem;
    color: var(--yellow);
    transition: 1s ease;
}

.right-arrow:hover{
    color: var(--yellow);
}

.descrip-text{
    position: relative;
    width: 300px;
    left: 80px;
    line-height: 2.7rem;
}

/* atrophy */

#atrophy {
    background-image: url(img/atrophypic1.png);
}

#atrophy2{
    background-image: url(img/atrophypic2.png);
}

#atrophy3{
    background-image: url(img/atrophypic3.png);
}

#atrophy-dot1{
    border: none;
    background-color: var(--magenta);
}

#atrophy-hex{
    transform: rotate(100deg);
}

/* mlhacks */

#mlhacks {
    background-image: url(img/mlhackspic7.png);
}

#mlhacks2{
    background-image: url(img/mlhackspic8.png);
}

#mlhacks3{
    background-image: url(img/mlhackspic3.png);
}

#mlhacks-dot1{
    border: none;
    background-color: var(--magenta);
}

#mlhacks-hex{
    transform: rotate(100deg);
}

/* cero */

#cero{
    background-image: url(img/ceropic1.png);
}

#cero2{
    background-image: url(img/ceropic2.png);
}

#cero3{
    background-image: url(img/ceropic3.png);
}

#cero-dot1{
    border: none;
    background-color: var(--magenta);
}

#cero-hex{
    transform: rotate(150deg);
}

/* bloog */

#bloog {
    background-image: url(img/bloogpic1.png);
}

#bloog2{
    background-image: url(img/bloogpic2.png);
}

#bloog3{
    background-image: url(img/bloogpic3.png);
}

#bloog-dot1{
    border: none;
    background-color: rgb(94, 231, 255);
}

#bloog-hex{
    transform: rotate(100deg);
}

/* linescape */

#linescape{
    background-image: url(img/linescapepic1.png);
}

#linescape2{
    background-image: url(img/linescapepic2.png);
}

#linescape3{
    background-image: url(img/linescapepic3.png);
}

#linescape-dot1{
    border: none;
    background-color: rgb(103, 126, 255);
}

#linescape-hex{
    transform: rotate(50deg);
}

/* snowball */

#snowball{
    background-image: url(img/snowballpic1.png);
}

#snowball2{
    background-image: url(img/snowballpic2.png);
}

#snowball3{
    background-image: url(img/snowballpic3.png);
}

#snowball-dot1{
    border: none;
    background-color: rgb(86, 40, 255);
}

#snowball-hex{
    transform: rotate(30deg);
}

/* 2048 */

#two{
    background-image: url(img/2048pic1.png);
}

#two2{
    background-image: url(img/2048pic2.png);
}

#two3{
    background-image: url(img/2048pic3.png);
}

#two-dot1{
    border: none;
    background-color: orange;
}

#two-hex{
    transform: rotate(70deg);
}