.crimson-text-regular {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: normal;
}

.red-hat-mono-<uniquifier> {
  font-family: "Red Hat Mono", monospace;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #111;
    font-size: 14px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 0.1s ease-out;
}

body {
    margin: 60px;
    font-family: "Red Hat Mono", serif;
}

.container {
    display: flex;
    flex-wrap: wrap;
}

.block {
    flex: 1;
    display: flex;
    padding: 0 0 80px 0;
    flex-wrap: wrap;
}

.block:nth-child(even) {
    margin-left: 30px;
    max-width: 800px;
}


/* Media query for small screens */
@media (max-width: 700px) {
    .block {
        flex-basis: 100%;
        margin: 0 !important;
        padding: 0 0 40px 0;
    }
}




/* Main code */

.block h1 {
    font-weight: normal;
    font-size: 48px;
    letter-spacing: -2px;
}

a {
    color: #333 !important;
    text-decoration: none;
    opacity: 0.6;
}

a:hover {
    opacity: 1;
}

.menu a:not(:last-child) {
    padding: 0 30px 0 0;
}

img.portrait {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
    justify-content: flex-start;
}

p {
    max-width: 700px;
    padding-bottom: 20px;
    display: block !important;
}

h2 {
    font-weight: normal;
    font-size: 18px;
    padding: 10px 0 8px;
    color: #999;
}

.text {
    flex-direction: column;
}






