@font-face {
    font-family: "Syne";
    src: url("./assets/fonts/SyneMono-Regular.woff2");
}

@font-face {
    font-family: "Hershey";
    src: url("./assets/fonts/Hershey-Noailles-Futura-Triplex-Bold.otf");
}

body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;

    font-family: 'Syne';
}

h1 {
    font-family: 'Hershey'
}

#title-wrapper {
    padding: 1em;
    flex: 0.5;
    display: flex;
    flex-direction: column;
    width: 400px;
}
#title-wrapper h1 {
    text-align: center;
    margin-bottom: 0;
}
#title-wrapper p {
    margin-top:0;
    padding: 1em;
    text-align: justify;
    border: 1px solid black;

}

#sketches {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#sketches iframe{
    width: 400px;
    height: 250px;
}

