@import url("https://use.typekit.net/ctk0hxd.css");

* {
    box-sizing: border-box;
    margin: 0;
}

body{
    font-family: neue-haas-grotesk-display, sans-serif;
    font-size: calc(15px + 0.390625vw);
    margin: 5vh;
    color: #282828;
    background-color: #F0EFEE;
    scroll-behavior: smooth;
}

header {
    display: flex;
    justify-content: space-between;
}

h1 {
    font-size: 7rem;
}

main p {
    margin: 1rem 0;
}

.gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    align-content: flex-start;
    gap: 1rem;
    width: 90vw;
}

.gallery img{
    max-width: auto;
    height: 35vh;
}

nav {
    margin-top: 10vh;
}

a {
    color: #282828;
    padding: 1rem;
    
}

a:hover {
    color: #0000ff;
}