*{
    box-sizing: border-box;
    font-size: 16px;
}

body{
    height: 100vh;
    width: 100%;
    background: linear-gradient(180deg, #12114B 0%, #09081F 100%);
    color: #F9F9F9;
    margin: 0;
    padding: 4rem 5rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 120px calc(100% - 120px);
    
}

/* === GENERIC STYLES === */
a{
    color: #F9F9F9;
    text-decoration: none;
}
/*== HEADER STYLE ===*/
header{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.logo_text{
    font-family: 'Remboy', sans-serif;
    font-weight: 200;
    font-size: 2.4rem;
    text-decoration: none;
    color: #F9F9F9;
    line-height: 1;
}
nav{
    width: 30%;
}
.nav_menu{
    list-style: none;
    padding: 0;
    margin: 0;
   
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav_menu li a{
    
	font-family: 'Lora', serif;
    font-size: 1.5rem;
}
.nav_menu li a:hover{
    text-decoration: underline;
}

.image_and_text_wrapper{
    display: flex;
    align-items: end;
    position: relative;
}

/*== MAIN PAGE STYLE ===*/
.main_text{
    position: absolute;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}
.main_title{
    font-family: 'Remboy', sans-serif;
    font-weight: 200;
    font-size: 15rem;
    margin: 0;
    width: 100%;
    text-align: end;
    line-height: 1;
}

.main_subtitle{
	font-family: 'Lora', serif;
    font-weight: 300;
    font-size: 1.7rem;
    width: 27%;
    margin: 0;
}

.main_image{
    width: 40%;
    object-fit: cover;
  
}


/* === ABOUT STYLE === */

.content_about{
    display: flex;
    align-items: start;
    justify-content: space-between;
    
}

.content_about .artist_name{
    font-family: 'Remboy', sans-serif;
    font-weight: 200;
    font-size: 5.65rem;
    line-height: .9;
    width: 50%;
}
.content_about .artist_name b{
    font-family: 'Remboy', sans-serif;
    font-weight: 200;
    font-size: 8.15rem;
}

.content_about .artist_biography{
	font-family: 'Lora', serif;
    font-style: normal; font-variant: normal;
    font-size: 1.7rem;
    font-weight: 100;
    width: 45%;
}
/* === CONTACT STYLES === */

.content_contact{
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.contact_photo{
    width: 35%;
    height: 80%;
    object-fit: cover;
}

.contact_info{
    width: 60%;
}

.contact_info .title_contact{
    font-family: 'Remboy', sans-serif;
    font-weight: 200;
    font-size: 4.15rem;
    line-height: 1;
    margin: 0;
    margin-bottom: 2rem;
}


.contact_info span{
	font-family: 'Lora', serif;
    font-style: normal; font-variant: normal;
    font-size: 1.5rem;
    font-weight: 100;
    width: 70%;
    display: block;
    margin: 1rem 0;
    
}


/* === WORK STYLES === */

.content_work{
    display: flex;
    justify-content: space-between;
    max-height: 100%;
}

.content_work .section_container{
    width: 48%;
    max-height: 100%;
    position: relative;
}

.content_work .section_container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .4;
    transition: opacity 250ms ease-in-out;
}

.content_work .section_container .label{
    position: absolute;
    bottom: 10%;
    left: 10%;
	font-family: 'Lora', serif;
    font-style: normal; font-variant: normal;
    font-size: 2rem;
    font-weight: 100;
    color: #F9F9F9;
    text-decoration: none;
    transition: opacity 250ms ease-in-out;
}

.content_work .section_container:hover > img {
    opacity: 1;
    transition: opacity 250ms ease-in-out;
}
.content_work .section_container:hover > .label{
    opacity: 0;
    transition: opacity 250ms ease-in-out;

}

/* === WORK SECTION STYLES=== */

.content_work_section{
    display: flex;
    justify-content: space-between;
    max-height: 100%;
}

.content_work_section .section_container{
    width: 48%;
    min-height: 100%;
    max-height: 100%;
    position: relative;
}

.content_work_section .section_container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .4;
    transition: opacity 250ms ease-in-out;
}

.content_work_section .section_container .label{
    position: absolute;
    bottom: 0%;
    left: 0%;
	font-family: 'Lora', serif;
    font-style: normal; font-variant: normal;
    font-size: 2rem;
    font-weight: 100;
    color: #F9F9F9;
    text-decoration: none;
    transition: opacity 250ms ease-in-out;
    padding: 1rem;
   
}

.content_work_section .section_container:hover > img {
    opacity: 1;
    transition: opacity 250ms ease-in-out;
}
.content_work_section .section_container:hover > .label{
    opacity: 0;
    transition: opacity 250ms ease-in-out;
  

}

/* === PROJECT STYLE === */

.project{

}

.project .goBack{
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    line-height: 1;
}

.project .project_info{
    margin-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.project .project_info img{
    width: 30%;
}
.project .project_info .project_text{
    width: 65%;
}

.project .project_info .project_text .title_project{
    font-family: 'Remboy', sans-serif;
    font-weight: 200;
    font-size: 4.15rem;
    line-height: 1;
    margin: 0 0 .5rem 0;
}
.project .project_info .project_text .project_date, .project .project_info .project_text .project_place{
    font-size: 1.6rem;
    color: #CFCFD8;
    display: block;
}
.project .project_info .project_text .project_description{
    font-size: 1.25rem;
}