body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace
}

.Main {
    text-align: center;
    min-width: 350px;
    width: 85vw;
    margin: auto
}

.Header {
    display: flex;
    flex-direction: column;
    margin: 30px auto 90px
}

.Title {
    font-size: 35px;
    color: #b5179e;
    font-family: Georgia, "Times New Roman", Times, serif
}

.Menu {
    flex: 1 1;
    justify-content: center
}

.Nav-menu,
.Menu {
    display: flex
}

.Nav-item {
    padding: 0 20px;
    font-size: 20px;
    text-decoration: none;
    color: #4361ee
}

.Nav-item:hover {
    color: #3a0ca3
}

.Profile-image {
    display: block;
    margin: auto;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%
}

.Content {
    text-align: left;
    font-size: large;
    line-height: 2
}

@media only screen and (min-width:1200px) {
    .Main {
        width: 50vw;
        margin: auto
    }

    .Header {
        flex-direction: row;
        align-items: baseline
    }

    .Menu {
        justify-content: flex-end
    }
}
