*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
}

body {
  background-color: #141414;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  max-width: 100%;
}

.main-container {
  max-width: 95%;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #1f1f1f;
  margin: 10px;
}

.button-section {
  display: flex;
  width: 100%;
  flex-direction: column;
  border-top: none;
  border-bottom: none;
  justify-content: center;
  align-items: center;
  padding-top: 0;
}

#profile-icon {
  border-radius: 50%;
  width: 100px;
  margin-bottom: 20px;
}

#name {
  font-size: 1.6rem;
  margin-bottom: 5px;
}

#location {
  color: #c5f82a;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

#quote {
  font-size:  1rem;
  margin-bottom: 10px;
}

button {
  display: block;
  width: 100%;
  margin: 5px;
  padding: 10px 0px;
  border-radius: 10px;
  font-weight: 600;
  color: #ffffff;
  background-color: #333333;
  border: none;
}

button:hover {
  background-color: #c5f82a;
  color: #1f1f1f;
  border-color: #c5f82a;
  cursor: pointer;
}


@media (min-width: 768px) {
  .main-container {
    flex-direction: row;
    min-width: 600px;
  }
  .name-section {
    width: 66%;
  }

  .button-section {
    width: 32%;
  }

  button {
    background-color: #1f1f1f;
    border: revert;
  }

  button:hover {
    background-color: #333333;
    color: #ffffff;
    border-color: #333333;
  }

  #name {
    font-size: 2rem;
    margin-bottom: 2px;
  }

  #location {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 20px;
  }

  #profile-icon {
    width: 140px;
  }
}

.attribution { font-size: 11px; text-align: center; }
.attribution a { color: #c5f82a }
