body {
    margin: 0;
    padding: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    box-sizing: border-box;
}

div {
    display: block;
}

h2 {
    display: block;
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}

h2,
h3 {
  font-family: Karla, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 700;
}

p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.top-section {
    display: flex;
    width: 100%;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

.bottom-bar {
    background-color: rgba(0, 0, 0, 0.03);
    padding: 0 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom-style: dashed;
    border-bottom-color: rgba(0, 0, 0, 0.06);
    border-bottom-width: 2px;
    position: relative;
    min-height: 96px;
    top: -96px;
    margin-bottom: -96px;
}

.bottom-bar a {
    transition: all 0.2s;
    cursor: default;
    background-color: #fff;
    padding: 6px 1.5rem;
    border-radius: 12px;
    box-shadow: 0 0 8px rgb(0 0 0 / 10%);
    border-style: solid;
    border-width: 1.5px;
    border-color: rgba(0, 0, 0, 0.2);
    color: inherit;
    text-decoration: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.bottom-bar a:hover {
    background-color: #f0f0f0;
    border-color: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.15);
}
  
.bottom-bar a:active {
    background-color: #ddd;
    border-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-1px);
}
  
.bottom-bar-group a:not(:last-child) {
    margin-right: 0.5rem;
}

@keyframes caret {
    50% {
      border-color: transparent;
    }
}

.typewriter {
    text-decoration: underline dashed;
    text-decoration-color: rgba(113, 128, 150, 0.99);
    border-right: 0.05em solid;
    animation: caret 1s steps(1) infinite;
}

.selfie {
    position: absolute;
    border-radius: 100%;
    height: 128px;
    width: 128px;
    transform: translateY(calc(-100% - 40px));
}

.changing-text {
    font-size: 2.5rem;
    width: 80%;
}

.big-text {
    font-family: Karla, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-weight: 600;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.main-content-container {
    min-height: 80vh;
    padding: 2rem 10%;
    background: aliceblue;
}

.main-content-container p {
    margin-bottom: 1rem;
}

.main-content-container a {
    transition: text-decoration 0.2s;
    color: rgba(113, 128, 150, 0.99);
    text-decoration: underline dashed;
    text-decoration-color: rgba(158, 166, 177, 0.514);
}

.main-content-container img {
    max-width: 250px;
    border-radius: 16px;
    box-shadow: 0 0 12px rgb(0 0 0 / 40%);
    margin: 1rem 1.5rem;
}

.top-bar {
    background-color: rgba(0, 0, 0, 0.03);
    background-color: rgba(0, 0, 0, 0.03);
    padding: 0 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom-style: dashed;
    border-bottom-color: rgba(0, 0, 0, 0.06);
    border-bottom-width: 2px;
    position: relative;
    min-height: 100px;
    margin-top: auto;
}

.top-bar a {
    transition: all 0.2s;
    cursor: default;
    background-color: #fff;
    padding: 6px 1.5rem;
    border-radius: 12px;
    box-shadow: 0 0 8px rgb(0 0 0 / 10%);
    border-style: solid;
    border-width: 1.5px;
    border-color: rgba(0, 0, 0, 0.2);
    color: inherit;
    text-decoration: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.top-bar a:hover {
    background-color: #f0f0f0;
    border-color: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.15);
}
  
.top-bar a:active {
    background-color: #ddd;
    border-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-1px);
}
  
.top-bar-group a:not(:last-child) {
    margin-right: 0.5rem;
}