
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

*::-webkit-scrollbar {
    width: 0.6rem;
    height: 0.6rem;
}
*::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0.3rem 0.1rem rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}
*::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 0.3rem 0.1rem rgb(0, 0, 0);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.7rem;
}
*::-webkit-scrollbar-button {
    display: none;
}
*::-webkit-scrollbar-corner {
    display: none;
}

body {
    position: absolute;
    height: 100%;
    width: 100%;
    max-height: 100%;
    max-width: 100%;
    color: #fff;
    background-color: #0a0a0a;
    font-family: monospace;
    font-size: 17px;
}

.wrapper {
    position: absolute;
    height: 100%;
    width: min(50rem, 100%);
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
}

.header {
    position: relative;
    flex-grow: 1;
    min-height: 2.4rem;
    width: 100%;
}

.title {
    position: relative;
    width: max-content;
    top: 50%;
    left: 10%;
    transform: translate(0, -50%);
    line-height: 100%;
    font-size: 2.4rem;
    font-weight: 500;
}


.projects {
    position: relative;
    flex-grow: 1;
    height: 20rem;
    width: 100%;
    overflow: auto;
}

.project-container {
    position: relative;
    height: 100%;
    min-height: 20rem;
    width: max-content;
    margin: 0 auto;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    overflow: auto;
}

.project {
    min-height: 2rem;
    width: 100%;
    margin: 1rem 0;
    cursor: pointer;
}

.project:hover .project-title,
.project:hover .project-desc {
    color: #be9164;
}

.project-title {
    display: inline-block;
    margin-right: 1rem;
    line-height: 2rem;
}

.project-desc {
    display: inline-block;
    line-height: 2rem;
    color: #8a8a8a;
}


.contact {
    overflow: visible;
    position: relative;
    min-height: 5.5rem;
    width: 100%;
}

.contact-container {
    overflow: visible;
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.email,
.github,
.linkedin,
.email svg,
.github svg,
.linkedin svg,
.email svg path,
.github svg path,
.linkedin svg path {
    cursor: pointer;
    height: 1.75rem;
    width: 1.75rem;
    fill: #fefefe;
}

.linkedin {
    margin-right: 10%;
}

.email {
    margin-left: 10%;
}

.email,
.email svg,
.email svg path {
    height: 2.25rem;
    width: 2.25rem;
}

.email:hover *,
.github:hover *,
.linkedin:hover * {
    fill: #be9164;
}

.email:hover .email-hover {
    display: block;
}

.email-hover {
    display: none;
    position: absolute;
    top: -2.5rem;
    height: max-content;
    width: max-content;
    border-radius: 0.5rem;
    padding: 0.75rem;
    background: #1b1a1a;
    font-size: 1rem;
}

.email-hover div:first-child {
    color: #8a8a8a;
}

.email-hover div {
    line-height: 1.5rem;
}
