* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffffff;
}

body {
    font-family: "Equateur", "Capriola",Arial, Helvetica, sans-serif;
}

/* Fonts */

@font-face{
    font-family: "Equateur";
    src: url("fonts/Equateur-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Montaga";
    src: url("fonts/Montaga-Regular.ttf") format("truetype");
}

@font-face{
    font-family: "Capriola";
    src: url("fonts/Capriola-Regular.ttf") format("truetype");
}

p {
    font-family:  "Montaga", serif;
    font-size: 0.9em;
    line-height: 1.4em;
    color: black;
}

h3 {
   font-family:  "Montaga", serif;
font-weight: 500;
    font-size: 1.8em;
    line-height: 1.8em;
    color: black;
}


a {
    color: black;

}

figcaption {
    font-family:  "Capriola", serif;
    font-size: 0.7em;
    line-height: 1.4em;
    color: black;
    margin-top: 5px;
}

figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

a:hover {
  text-shadow: 0 0 10px #fe89da;
}

/* Full-screen image */

.hero {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Artist name */

.artist-name {
       display: grid;
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-left: 40px;
    margin-right: 20px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 0 20px;
    font-family: "Equateur", serif;
    font-size: 5em;
    font-weight: 300;
    line-height: 0.9;
    color: #fe89da;
    letter-spacing: -0.01em;
}

/* Menu */

.menu {
    position: absolute;
    top: 60px;
   right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: center;
    gap: 80px;
    background-color: transparent;
}

.menu a {
    color: black;
    text-decoration: none;
    font-style: normal;
text-align: center;
    font-family: "Equateur", serif;
   font-size: 1em;
    font-weight: 300;
letter-spacing: 0.05em;
background-color: transparent;
    /* transition: opacity 0.2s hotpink ease; */
}

.menu a:hover {
     text-shadow: 0 0 10px #fe89da;
      opacity: 0.7;
}

/* Info */
.bio{
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    margin-left: 40px;
    margin-right: 20px;
    margin-top: 100px;
    margin-bottom: 10px;
    padding: 0 20px;

}

.bio-image {
    width: 50%;
    height: auto;
}

/* Mobile */
@media (max-width: 768px) {


p {
    font-family:  "Montaga", serif;
    font-size: 1em;
    line-height: 1.4em;
    color: black;
}

h3 {
   font-family:  "Montaga", serif;
font-weight: 500;
    font-size: 1.2em;
    line-height: 1.8em;
    color: black;
}

    .artist-name {
display: none;
}

    .menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;

        width: 100%;

        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        gap: 30px;

        padding: 15px 10px;

        background-color:greenyellow;

        z-index: 1000;
    }

    .menu a {
        font-size: 1rem;
        background-color: transparent;
    }

    .menu a:hover {
    text-shadow: 0 0 10px hotpink;
      opacity: 0.9;
}

    .bio {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 80px;
    margin-bottom: 10px;
    padding: 0px;
    text-align: center;
}

.bio-image {
    width: 50%;
    height: auto;
    margin-top: 40px;
}
}
