:root {
    scroll-behavior: smooth;
    --main-bg-color: black;
}

@font-face {
    font-family: "Xanh Mono";
    src: url('fonts/xanh-mono/XanhMono-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
html, body {
    height: 100%;
}
html * {
    margin: 0;
}

body {
    font-family: "Xanh Mono";
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--main-bg-color);
    color: white;


    h1 {
        font-size: 28px;
    }

    ul {
        list-style: none;
        padding: 0;
    }

    a {
        color: inherit;
    }
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vh;
    width: 80vw;

    margin-top: 1vh;

   section {
       display: flex;
       flex-direction: column;
       align-items: center;
   } 

   img {
       max-width: 100%;
       background-color: var(--main-bg-color);
   }
   ul {
       display: flex;
       align-items: center;
       gap: 10px;
   }
   
    #name {
        text-align: center;
    }
    #tour ul {
        flex-direction: column;
        .gig {
            display: flex;
            gap: 32px;
            align-items: center;
            .date {
                white-space: nowrap;
            }
        }
    }
   
    #bio {
        text-align: center;
    }
}

@media (min-width: 576px) {
    main {
        margin-top: 80px;
        width: 380px;
        gap: 40px;
    }
}