body {
  font-family: sans-serif;
  margin: 20;
  background-color: #000000;
  padding: 20px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tekst h3, .tekst h3 a {
  color: inherit;
  text-decoration: none;
}
.tekst h3 a:hover, .tekst h3 a:active {
  color: #faf4eb;
  background-color: #000000;

}
.logo {
  width: 200px;
  height: 200px;
  background: gray;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.title {
  color: #faf4eb;
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
}
.tekst {
  color: #faf4eb;
  font-size: 14px;
  text-align: center;
  margin: 0px;
}
.tekst h3{
  color: #faf4eb;
  margin-top: 6px;
  margin-bottom: 6px;
  text-align: center;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 10px;
  margin-top: 20px;
}

.buttons a {
  text-align: center;
  text-decoration: none;
  padding: 20px;
  width: 70%;
  background-color: #000000;
  color: #faf4eb;
  border: 1px solid #faf4eb;
  border-radius: 5px;
}

a:hover {
  background-color: #faf4eb;
  color: #000000;
}
a:active {
  background-color: #faf4eb;
  color: #000000;
}



