/* imported fonts */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Decol&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Martel:wght@200;300;400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela&display=swap');

:root{
    --main-font: "Kaisei Decol", serif;
    --second-font: "Varela", sans-serif;
    --title-font: "Abril Fatface", serif;
}


/* universal elements */
*{
    padding: 0;
    margin: 0;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* cv */
.cv-container{
    float: left;
    width: calc(100% - 10%);
    margin: 30px 5% 30px;
    text-align: center;
}

.cv-container h1{
    font-family: var(--title-font);
    font-size: 18pt;
    font-weight: 300;
    text-decoration: underline;
    margin: 0 0 25px 0;
}

.project-box{
    float: left;
    width: 100%;
    padding-bottom: 20px;
    margin: 10px 0;
    border-bottom: 1px solid #ececec;
}
.project-box:last-of-type{
    padding-bottom: 0;
    border-bottom: none;
}

.project-box h3{
    float: left;
    width: 100%;
    text-align: center;
}

#name,
#type,
#date,
#director{
    float: left;
    width: 100%;
    font-family: var(--main-font);
}

#name{
    font-weight: 600;
}

#type,
#date,
#director{
    font-weight: 400;
}

.project-seperater{
    float: left;
    width: calc(100% - 20%);
    margin: 20px 10%;
    height: 1px;
    background: #ececec;
}

.music-video-commercial-container{
    float: left;
    width: 100%;
}

.music-video-commercial-container p{
    margin: 10px 0;
    width: 100%;
    font-family: var(--main-font);
    font-size: 14pt;
    padding: 0 0 5px 0;
    border-bottom: 1px solid #ececec;
}

.music-video-commercial-container p:last-child{
    padding: 0;
    border-bottom: none;
}

.pdf-container{
    float: left;
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px 0 0 0;
}

#pdf-bottom{
    margin: 20px 0 30px;
}


.pdf-container p{
    font-family: var(--title-font);
    font-size: 16pt;
}

.pdf-container a{
    color: #000;
}

@media (min-width: 769px){
    .pdf-container{
        margin: 50px 0 0 0;
    }
}