@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", serif;
}

body {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #001219;
    color: #f1f1f1;
    overflow-x: hidden;
    min-width: 0;
}
main {
    justify-content: space-around;
}

header {
    display: flex;
    justify-content: center;
    padding: 5px 12px;
    font-size: x-large;
}

.header-container {
    display:flex;
    flex-direction: row;
    align-items: center;
}

#logo {
position: relative;
color: #40e0d0;
font-weight: 500;
display: inline-block;
padding: 30px;
font-size: 2.5rem;
margin-right: 20px;
/* background-image: linear-gradient(45deg, #40e0d0, #ffcc99);*/
/* -webkit-background-clip: text;  */

}

#logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 2px solid #40e0d0;
    transform: translate(-50%, -50%) rotate(45deg);
    /* z-index: -1; */
}

.footer-icon {
    color: #f1f1f1;
    padding: 4px;
    font-size: x-large;
    text-decoration: none;
    transition: ease-in .1s;
    margin-bottom: 50px;
}

.footer-icon:hover {
    color: #40e0d0;
}

/* .tabs {
    position: absolute;
    margin-top: 30px;
    width: 20%;
    align-items: flex-start;
} */

.tabs {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
}
.tabs a {
    text-decoration: underline;
    color: #f1f1f1;
    transition: color .2s ease;
}

.tabs li {
    padding: 8px;
}

.tabs li.active a {
    color: #40e0d0;
}

#about-paragraph {
    font-size: large;
    padding: 20px;
    text-align: center;
    max-width: 600px;
}

/* .tabs li {
    transition: ease-in .15s;
}

.tabs li:hover {
    transform:translate(4px);
    text-decoration: underline;
} */

#about, #experience, #education, #projects {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card {
    padding: 8px;
    max-width: 600px;
}

#job, #degree, #project {
    text-align: left;
    align-content: center;
    padding: 20px 30px;
    /* display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 400px;
    text-align: left; */
}

li {
    list-style-type: none;
}

li #job, li #degree, li #poject {
    text-align: left;
    align-content: center;
    padding: 20px 50px;
}

#job:hover, #degree:hover, #project:hover {
    border-radius: 15px;
    background-color: rgba(255, 255, 255, .02);
    backdrop-filter: blur(10px);
    box-shadow: 0 -1px 1px rgba(255, 255, 255, .1);
    cursor: pointer;
}

#job a, #degree a, #project a {
    text-decoration: none;
    text-align: left;
    color: #f1f1f1;
    font-weight: 600;
    font-size: 1.2em;
    font-family: "Crimson Pro", serif;
    user-select: none;
}

#job p, #degree p, #project p {
    color: #f1f1f1;
    padding: 4px;
    font-family: "Open Sans", sans-serif;
    /* font-size: 1.01em; */
    font-size: 14px;
}

.skills {
    justify-content: left;
    color: rgb(64, 224, 208);
    /* color: rgb(111, 237, 183); */
    padding: 4px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.skills li {
    padding: 6px 16px;
    font-size: small;
    margin: 3px;
    border-radius: 30px;
    /* background: rgba(111, 237, 183, .1); */
    background: rgba(64, 224, 208, .1);
    /* background: rgba(111, 237, 183, .1); */
    align-content: center;
    /* border: 1px solid rgb(111, 237, 183, .1); */
}

#job i, #degree i, #project i {
    /* position:absolute;
    margin-left: -25px; */
    margin-right: 5px;
    margin-top: 3px;
    color: rgb(64, 224, 208);
}

.links {
    font-size: small;
    font-family: "Open Sans", sans-serif;
    display: flex;
    flex-wrap: wrap;
}

.links i {
    font-size: small;
}

#url {
    padding: 5px;
}

#url a {
    font-family: "Open Sans", sans-serif;
    font-size: small;
}

footer {
    width: 100%;
    bottom: 0;
    margin-top: auto;
    font-size: .8rem;
    padding: 5px 12px;
    font-family: "Open Sans", sans-serif;
}

footer p {
    justify-content: center;
    align-items: center;
    align-content: center;
    justify-items: center;
    text-align: center;
}

.footer-icons {
    margin-bottom: 15px;
}

@media (max-width: 800px) {
    .tabs {
        position: relative;
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
    }
    .tabs a {
        text-decoration: underline;
    }
    .tabs li:hover {
        transform: none;
    }
    .card {
        margin: 20px;
    }
    header h1 {
        display: none;
    }
    #about h2 {
        text-align: center;
    }
}

