body {
    background-color: #101f5e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #EEEEEE;
    font-family: 'Geist', system-ui, -apple-system, sans-serif;
    font-weight: 100;
}

a {
  text-decoration: none;
  color: inherit;
}

.Hero {
    padding-top: 2em;
    width: 25%;
}

h1 {
    font-size: 3.5em;
    color: #EEEEEE;
    margin: 15px;
}

.List {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.SvgContact {
    height: 2em;
    margin: 10px;
}

.Project {
    margin-bottom: 25px;
    border-radius: 2.5vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Project img {
    padding: 15px;
    border-radius: 2.5vh;
    flex: 0, 0, 45%;
    max-width: 45%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.TitelSubtitle {
    width: 100%;
    height: 100%;
}

.TitelSubtitle h2 {
    color: #EEEEEE;
    font-size: xx-large;
}

p {
    height: 100%;
    font-size: x-large;
}

@media only screen and (max-width: 1400px) {
    .List {
        width: 75%;
    }
}

@media only screen and (max-width: 992px) {
    .Hero {
        width: 50%;
    }

    .Project {
        margin-bottom: 25px;
        border-radius: 2.5vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .SvgContact {
        height: 1.5em;
    }

    .Project img {
        flex: 0, 0, 75%;
        max-width: 100%;
    }
}