@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

:root {
    --primary: #00EDDF;
    --primary30: rgba(0, 237, 221, 0.30);
    --primary10: rgba(0, 237, 221, 0.10);
    --primary05: rgba(0, 237, 221, 0.05);
    --darkBG: #0A1620;
    /* --text: rgba(158, 248, 242, 0.6); */
    --text: rgba(0, 237, 221, 0.60);
}

::after,
::before {
    box-sizing: border-box
}

::-webkit-scrollbar {
    width: 8px; 
    height: 8px; 
}

::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

::-webkit-scrollbar-thumb {
    background: var(--primary05);
    border-radius: 0px; 
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary30);
}

html,
body {
    scrollbar-width: thin;
    scrollbar-color: var(--primary30) var(--primary05);
    height: 100%;
    font-size: 16px;
}
/* Chrome, Edge, Chromium */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--primary05);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary30);
    border-radius: 3px;
}

body {
    font-family: "Space Grotesk", sans-serif;
    display: flex;
    align-items: center;
    padding: 125px 50px;
    background-color: var(--darkBG);
    background-image: url('../img/bg.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    border: 0px solid var(--primary);
    border-top-width: 5px;
    color: var(--text);
    margin: 0;
    line-height: 1.5;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.text-center {
    text-align: center;
}

.main-panel {
    width: 100%;
    max-width: 800px;
    padding: 50px;
    border-radius: 12px;
    margin: auto;
}


.title {
    background-color: var(--primary10);
    padding: 10px 20px;
    display: inline-block;
    margin-bottom: 10px;
}

h1 {
    font-weight: 600;
    font-size: 2.2rem;
    margin: 0;
    letter-spacing: 0.3rem;
    color: var(--primary);
}

h2 {
    font-weight: 100;
    font-size: 1rem;
    letter-spacing: 0.08rem;
    margin-bottom: 30px;
    text-transform: lowercase;
    color: var(--primary);
}

.social_icons {
    margin-bottom: 30px;
}

a.social-icon {
    margin: 0px;
    padding: 8px;
    border-radius: 4px;
    display: inline-block;
    line-height: 0px;
    transition: all 0.25s;
}

a.social-icon img {
    width: 20px;
    opacity: 0.6;
    transition: all 0.25s;
}

a.social-icon:hover {
    background-color: var(--primary10);
    transform: scale(1.05);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.25s;
}

a.social-icon:hover img {
    opacity: 0.8;
    transition: all 0.25s;
}

p {
    font-weight: 300;
    font-size: 0.8rem;
    /* margin-bottom: 0px; */
    opacity: 0.7;
    margin-top: 20px;
}

p:last-of-type {
    margin-bottom: 0px;
}


img.icon {
    width: 40px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
    margin-top: 60px;
    opacity:   0.1;
}

.credits{
    margin-top: 50px;
}
.credits .credit_year{
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 100;
    margin-bottom: 20px;
    margin-top: 50px;
    opacity: 0.8;
}



.credits .credit_list .credit{
    position: relative;
    border-color: var(--primary10);
    border-style: solid;
    border-width: 0px;
    border-bottom-width: 1px;
    display: flex;
    flex-direction: column;
    width: auto;
    max-width: 800px;
    padding: 7px 10px;
    margin: auto;
}
.credits .credit_list .credit:first-of-type{
    border-top-width: 1px;
}
.credits .credit_list .credit .cred_titlerow,
.credits .credit_list .credit .cred_inforow{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    line-height: 1.3;
}
.credits .credit_list .credit .cred_titlerow .cred_title{
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
}
.credits .credit_list .credit .cred_titlerow .cred_role{
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.7;
}
.credits .credit_list .credit .cred_inforow{
    font-size: 0.87rem;
    font-weight: 300;
    opacity: 0.4;
}
.credits .credit_list .credit .cred_date{
    position: absolute;
    width: 120px;
    height: 100%;
    text-align: right;
    left: -130px;
    top: 0px;
    vertical-align: middle;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: .7rem;
    font-weight: 300;
    opacity: 0.4;
    transition: all 0.25s;
}

.credits .credit_list .credit:hover .cred_date{
    opacity: 0.8;
    left: -135px;
}

@media only screen and (max-width: 950px) {
    .credits .credit_list .credit{
        max-width: 600px;
    }
    body{
        padding: 50px 60px;
    }
}

@media only screen and (max-width: 690px) {
    body{
        padding: 125px 5%;
        padding-top: 20px;
    }
    .title{
        background: none;
    }
    .main-panel{
        padding: 10px;
    }
    .credits .credit_list .credit .cred_titlerow,
    .credits .credit_list .credit .cred_inforow{
        flex-direction: column;
    }
    .credits .credit_list .credit:hover .cred_date,
    .credits .credit_list .credit .cred_date{
        position: relative;
        width: 100%;
        left: auto;
        right: auto;
        justify-content: center;
        opacity: 0.4;
    }

  }