* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* list-style: none; */
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    transition: 400ms ease;
}

/* ======================================= */
/* HEADER */
header {
    min-height: 50vh;
    background-color: black;
    background-image: url("../images/bg4-dark.jpg");
}

header h1 {
    font-weight: 100;
    font-size: 60px;
    text-align: center;
    width: fit-content;
    color: white;
    padding: 10px;
}


/* ======================================= */
/* MAIN */
main {
    min-height: 100vh;
    margin-top:5vh; 
    /* background-color: lightgray; */
    /* color: black; */
}
main h2 {
    font-weight: 100;
    font-size: 30px;
}

/* ======================================= */