@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

html, body, .Content {
    padding: 0px;
    margin: 0px;
    min-height: 100%;
}

body {
    font-family: 'Varela Round', sans-serif;
    color: #333;
    font-size: 1.3rem;
}

.Content {
    display: grid;
    width: 100vw;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr minmax(0px, 1200px) 1fr;
}

.Content .Description {
    margin-top: 60px;
}

.Content .PersonalSite {
    text-decoration: none;
    color: #777;
    transition: 0.2s;
}

.Content .PersonalSite:hover {
    color: salmon;
}

.CenterColumn {
    margin: 60px 30px;
    grid-column: 2 / 3;
}

.CenterColumn h1 {
    margin: 0px;
}

.Content .Projects {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.Content .Project  {
    max-width: 350px;
    margin: 15px;
}

.Content .Projects .Project h2 {
    margin: 5px 0px;
}

.Content .Projects .Project img {
    width: 100%;
    height: auto;
}
