@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;700&display=swap');

h1 {
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 0.1em;
    line-height: 100%;
}

#titlediv {
    display: inline-block;
    padding: 0;
    margin: 0;
}

#project-container {
    margin-top: 3em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3em 3em;
    width: min(60em, 90vw);
    margin-left: auto;
    margin-right: auto;
}

.project {
    padding: 0.5em;
    width: 25em;
    text-align: left;
}

.spacer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-title {
    font-weight: bold;
    margin-top: 0.1em;
    margin-bottom: 0.1em;
    font-size: 2em;
}

.project-description {
    font-size: 1.3em;
}

.buttondiv {
    cursor: pointer;
    padding: 0.4em;
    font-size: 1.3em;
    background-color: black;
    color: white;
    font-weight: bold;
}

.buttondiv:hover {
    background-color: red;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: red;
}

img {
    width: 100%;
}

img:hover {
    width: 100%;
    box-shadow: 5px 5px red, -5px -5px red, -5px 5px red, 5px -5px red;
}

::selection {
    background-color: red;
    color: white;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
    text-align: center;
    font-weight: 500;
}

[contenteditable] {
    outline: 0px solid transparent;
}

@media (hover: none) {
    body {
        font-size: 1.5em;
    }
  }
  