* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

/* 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");
}

/* Full-screen image */

.hero {
    width: 100vw;
    height: 100vh;
    background-image: url("images/Startpage\ picture.jpg");
    background-size: cover;
    background-position: center;

    position: relative;
}

/* Artist name */

.artist-name {
    position: absolute;
      
    top: 60%;
    left: 40%;
    transform: translate(-50%, -50%);
    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;
}

.menu a {
    color: white;
     text-shadow: 0 0 10px white;
    text-decoration: none;
    font-style: normal;
text-align: center;
    font-family: "Equateur", serif;
    font-size: 1em;
    font-weight: 300;
letter-spacing: 0.05em;
    transition: opacity 0.2s ease;
}

.menu a:hover {
    opacity: 0.5;
}

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

    .hero {
    width: 100vw;
    height: 100vh;
    background-image: url("images/Startpage\ picture.jpg");
    background-size: inherit;
    background-position: center;

    position: relative;
}

    .artist-name {
    position: absolute;
    top: 60%;
    left: 40%;
    transform: translate(-50%, -50%);
    font-family: "Equateur", serif;
    font-size: 5em;
    font-weight: 300;
    line-height: 0.9;
    color: #fe89da;
    letter-spacing: -0.01em;
}

    .menu {

     position: absolute;
    top: 50px;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: center;
    gap: 50px;
    }

    .menu a {
        font-size: 1.5rem;
        text-align: center;
    }
}