body {
  background-color: black;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  margin: 10px;
  padding: 0;
}

.container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.name {
  background-color: #232323;
  width: 300px;
  padding: 10px;
  text-align: center;
  font-size: 24px;
  margin: 0;
}

.picture-container {
  background-color: #232323;
  width: 300px;
  height: 300px;
  border-radius: 100% 100% 0 0;
  padding: 10px;
}

.links-section {
  background-color: #232323;
  width: 300px;
  padding: 10px 10px 15px 10px;
  display: flex;
  justify-content: space-around;
  border-radius: 0 0 10px 10px;
}

.picture {
  width: 290px;
  height: 290px;
  border: 5px solid dodgerblue;
  border-radius: 100%;
  align-self: center;
}

.separator {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.separator-line {
  margin: 0 10px;
  height: 2px;
  background-color: dodgerblue;
}
