body {
    margin: 0;
    padding: 0;

    box-sizing: border-box;

    font-family: 'Inter', cursive;
}

h1 {
    font-family: 'Abril Fatface', cursive;
    font-weight: normal !important;

    font-size: 4rem;

    white-space: nowrap;

    padding: 0 1rem;
    margin: 0;
}

.hero-wrapper {

    min-height: 50vh;
}

.hero {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;

    width: 100%;
    min-height: 50%;

    background-image: url('src/img/hero.jpg');
    background-position: center;
    background-size: cover;
}

.hero-box {
    text-align: right;
}


.title {
    /* font-family: 'Inter', cursive; */
    font-family: 'Rubik Dirt', cursive;

    color: white;

    white-space: normal;

    margin: 0;
    padding: 0;

    font-size: 5rem;
}

.line {
    height: 5px;
    width: 50vw;
    background-color: white;
}

.line.black {
    background-color: black;
}

.end-line {
    position: relative;
}

.end-line .line {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(-50%);
}

.flex-row {
    display: flex;
    flex-direction: row;

    align-items: center;
}

.flex-row.space {
    justify-content: space-around;
}

.flex-row.center {
    justify-content: center;
}

.flex-row.at-start {
    align-items: flex-start;
}

.flex-row.break {
    flex-wrap: wrap;
}

.flex-row.right {
    justify-content: right;
}

.subtitle {
    font-family: 'EB Garamond', serif;
    background: #F8C822;
    background: linear-gradient(to right, #F8C822 38%, #479E81 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;


    margin: 0;
    margin-left: 1rem;

    font-size: 2rem;
}


.container {
    margin: 0 auto;
    max-width: 1000px;

    padding: 1rem 3rem;
}

.wide {
    background-color: white;

    min-height: 5rem;
    padding: 1rem 0;
}

.social {
    font-family: 'EB Garamond', serif;

    font-size: 1.5rem;
    text-decoration: none;
    background: linear-gradient(to right, #F8C822 38%, #479E81 100%);
    -webkit-background-clip: text;
    color: black;

    transition: color .5s ease;
}

.social i {
    font-size: 2rem;
    padding: 1rem;
}

.social:hover {
    color: transparent;
}



.showcase {
    display: flex;
    flex-wrap: wrap;

    position: relative;
}

.showcase .gallery, .showcase .text {
    flex-basis: 30rem;
    flex-grow: 1;
}


.showcase.joies {
    background-color: #FFDA6C;
}


.showcase.art {
    background-color: #61C5A3;
}


.showcase .gallery {
    display: flex;
    flex-direction: column;
}

.showcase .gallery img {
    width: 100%;
}


.showcase .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.showcase.art .text {
    align-items: flex-end;
}

.showcase .text-inner {
    position: sticky;
    top: 0;
    left: 0;

    max-width: 400px;

    padding: 2rem;
}

.showcase .text h1 {
    padding: 0 1rem;
    font-size: 2.4rem;
}


.showcase .line {
    width: 80%;
}

.showcase .links {
    display: flex;
    flex-direction: column;

    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
}

.showcase .links a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;

    font-weight: bold;

    padding: 0 1rem;

    transition: color .5s ease;
}

.showcase .links a::before {
    content: '';
    display: block;
    width: .5em;
    height: .5em;

    background-color: black;

    transform: rotate(0deg);

    transition: transform .5s ease, background-color .5s ease;

    margin: 0 1rem;
}

.showcase .links a:hover::before {
    transform: rotate(45deg);
}

.joies a:hover {
    color: #61C5A3;
}

.joies a:hover::before {
    background-color: #61C5A3;
}


.art a:hover {
    color: #FFDA6C;
}

.art a:hover::before {
    background-color: #FFDA6C;
}


section {
    position: relative;
    background-color: white;

    padding-bottom: 5rem;
}

.text {
    flex-basis: 20rem;
    flex-grow: 1;
}


.avatar {
    align-self: start;
    flex-basis: 20rem;

    padding: 0 2rem;
}

.avatar-inner {
    width: 20rem;
    height: 20rem;
    border-radius: 100rem;

    overflow: hidden;
}

.avatar img {
    height: 100%;
}

.content {
    justify-content: center;
}

span.marg {
    width: 20px;
}

.top-marg {
    margin-top: 3rem;
}


footer {
    background: rgb(253,187,45);
background: linear-gradient(0deg, rgb(127, 255, 169) 0%, rgb(68, 214, 158) 100%);
    height: 100vh;
    color: white;
}

a {
    color: rgb(253,187,45);
}

.info {
    padding: 0 1rem;
}