@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font-family: 'Roboto', sans-serif;
    vertical-align: baseline;
    background: transparent;
}

body {
    height: 100dvh;
    background-color: rgb(206, 255, 237);
}

.headName h3 {
    font-size: 5rem;
    color: #eeeeee;
}

.headName h2 {
    font-size: 3rem;
    color: #eeeeee; 
}

.headName {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
    background-color: rgb(0, 138, 92);
}

.contents {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
    flex-direction: column;
}

.contents h2 {
    font-size: 3rem;
    align-self: center;
}

.about {
    margin-left: 4%;
    display: flex;
    width: 90%; 
    padding: 1rem;
}

.about h1 {
    font-size: 2rem;
}

.aboutRow {
    display: flex;
    flex-direction: column;
    margin-left: 0.75rem;
    gap: 0.5rem;
    width: 80%;
}

.crop {
    overflow: hidden;
    width: 4rem;
    height: 6rem;
    border-radius: 0.5rem;
}

.crop img{
    width: 6rem;
    height: 6rem;
    margin-left: -1.25rem; 
}

.skills {
    padding-left: 5%;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skills h1 {
    font-size: 2rem;
}

.languages {
    display: flex; 
    flex-direction: row; 
    align-items: center;
    gap: 0.5rem;
}

.languages img{
    height: 2rem;
    width: 2rem;
    margin: 0 0.125rem;
}

.languages div{
    display:flex;
    flex-direction: column;
    align-items: center;
}

.horizontalLine {
    width: 90%;
    margin-left: 4%;
    height: 0.125rem;
    padding: 0 0 0 1rem;
    background-color: black;
}

.projects {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
    padding: 3rem 0;
    margin: 0;
    align-items: center;
}

.RPM {
    background-image: url('res/RPMCalendar.png');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 50rem;
    height: 34.5rem;
    border: 0.125rem #5f5f5f solid;
    overflow: hidden;
    border-radius: 0.75rem;
    align-content: end;
}

.RPM:hover{
    box-shadow: rgba(0, 0, 0, 0.283) 0.125rem 0.125rem 0.175rem 0.175rem;
    background-blend-mode: darken;
    background-color: rgba(171, 171, 171, 0.137);
}

.RPM div {
    background-color: white;
    padding: 0.5rem 1rem;
}

.popupRPM {
    position: fixed;
    width: 60%;
    height: min-content;
    background-color: #fefefe;
    flex-direction: column;
    display: none;
    align-self: center;
    border: solid #5f5f5f 0.125rem;
    border-radius: 0.75rem;
    box-shadow: rgba(0, 0, 0, 0.283) 0.125rem 0.125rem 0.175rem 0.175rem;
}

.RPMDescription {
    display: flex;
    flex-direction: column;
    border-radius: 0.75rem;
    border: solid #c7c7c7 0.025rem;
    background-color: #dfdfdf;
    margin: 0 2.5rem 2.5rem 2.5rem;
    padding: 0.5rem 2rem;
}

.RPMDescription p{
    margin-top: 0.5rem;
}

.popupRPM ul{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.popup {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(95, 95, 95, 0.242);
    justify-content: center;
}

.topRPM {
    display: flex;
    padding: 0.5rem 0.35rem 0.35rem 1rem;
    flex-direction: row;
    justify-content: space-between;
    margin: 0.5rem 0.5rem 0 0.5rem;
}

.topRPM h3{
    font-size: xx-large;
}

.topRPM button{
    height: min-content;
    padding: 0 0.25rem;
}

.topRPM button:hover{
    box-shadow: rgba(0, 0, 0, 0.283) 0.025rem 0.025rem 0.075rem 0.075rem;
}

.picturesRPM {
    background-image: url('res/RPMCalendar.png');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 80%;
    aspect-ratio: 16/11;
    border-radius: 0.75rem;
    margin: 1.25rem 0;
    background-color: rgb(237, 237, 237);
    align-self: center;
    display:flex;
    justify-content: space-between;
}

.right, .left{
    line-height: 1em;
    padding: 0.25rem 0.85rem 0.85rem 0.85rem;
    font-size: 3rem;
    align-self: center;
    margin: 0.25rem;
    background-color: rgba(215, 215, 215, 0.411);
    color: #1f1f1f;
}

.right:hover, .left:hover{
    background-color: rgba(123, 123, 123, 0.411);
}

.minestuck {
    background-image: url('res/minestuck.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 50rem;
    height: 34.5rem;
    border: 0.125rem #5f5f5f solid;
    overflow: hidden;
    border-radius: 0.75rem;
    align-content: end;
}

.minestuck:hover{
    box-shadow: rgba(0, 0, 0, 0.283) 0.125rem 0.125rem 0.175rem 0.175rem;
    background-blend-mode: darken;
    background-color: rgba(102, 102, 102, 0.244);
}

.minestuck div {
    background-color: white;
    padding: 0.5rem 1rem;
}

.popupMine {
    position: fixed;
    width: 60%;
    height: min-content;
    background-color: #fefefe;
    flex-direction: column;
    display: none;
    align-self: center;
    border: solid #5f5f5f 0.125rem;
    border-radius: 0.75rem;
    box-shadow: rgba(0, 0, 0, 0.283) 0.125rem 0.125rem 0.175rem 0.175rem;
}

.popupMine ul{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.MineDescription {
    display: flex;
    flex-direction: column;
    border-radius: 0.75rem;
    border: solid #c7c7c7 0.025rem;
    background-color: #dfdfdf;
    margin: 0 2.5rem 2.5rem 2.5rem;
    padding: 0.5rem 2rem;
}

.MineDescription p{
    margin-top: 0.5rem;
}

.topMine {
    display: flex;
    padding: 0.5rem 0.35rem 0.35rem 1rem;
    flex-direction: row;
    justify-content: space-between;
    margin: 0.5rem 0.5rem 0 0.5rem;
}

.topMine h3{
    font-size: xx-large;
}

.topMine button{
    height: min-content;
    padding: 0 0.25rem;
}

.topMine button:hover{
    box-shadow: rgba(0, 0, 0, 0.283) 0.025rem 0.025rem 0.075rem 0.075rem;
}
