/*Home page*/
.main{
    background-color: var(--lightgray);
}

.main-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    width: 80%;
    margin: 0 auto;
    height: 90vh;
    background-color: var(--lightgray);

}

.main-content{
    justify-self: start;
    margin-left: 20px;
    color: var(--darkgrey);
    width: 80%;
}

.main-content h1{
    font-size: 2.3rem;
}

h3{
    font-size: 1.3rem;
}

p{
    font-size: 20px;
}

#main-img{
    height: 60%;
    width: 60%;
}

/*Resume page*/
.resume-link{
    color: var(--darkgray);
    
}

.resume-link:hover{
    color: var(--brightred);
    transition: all 0.2s ease-out;
}

.links{
    display: grid;
    grid-template-columns: repeat(6, auto);
    list-style: none;
    text-align: left;
    width: 70%;
    justify-self: end;
}

/*Contact page*/
.contact-writing{
    position: absolute;
    top: 40%;
    right: 75px;
       
}

.ff-compose{
    top: 10%;
}

/*Academic Endeavors Page*/
.flame-lab{
    position: absolute;
    top: 40%;
    right: 75px;
}
.other-lab{
    position: absolute;
    top: 60%;
    right: 75px;
}
.otherer-lab{
    position: absolute;
    top: 40%;
    right: 75px;
}
.other-lab p{
    font-size: 20px;
}
.otherer-lab p{
    font-size: 2.3rem;
}
