:root {
    --text-color: #ffffff
}

body {
    background-color: #000000;
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
}

main {
  max-width: 700px;
  margin: 50px auto 0 auto;
}

a {
    color: #efb0ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


.center-text {
    text-align: center;
}

.profile-card {
    display: flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 30px;
    gap: 50px;
}

.profile-card h1 {
    margin-top: 10px;
}

.profile-picture {
  width: 220px;
  height: 220px;
  object-fit: cover;
  display: block;
  border: 5px solid #342963;
  padding: 7px;
}

@media (max-width: 600px) {
    .profile-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
        margin: 0 auto;
    }

        .profile-card h1{
        margin-top: 25px;
    }
}

.end-note {
    margin-top: 250px;
}