@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400&family=Roboto:ital,wght@0,500;0,700;1,400&display=swap");
* {
  /* font-family: "Noto Sans", sans-serif; */
}
#container {
  display: flex;
  flex-wrap: wrap;
}

#header {
  flex-basis: 100%;
  padding: 15px;
  margin: 5px;
  text-align: center;
  background-color: #ccc;
  color: black;
}
.content-1 {
  font-family: "Noto Sans", sans-serif;
  flex-basis: 100%;
  text-align: center;
}
.content-1 #fullname {
  position: relative;
  bottom: 10px;
  font-weight: 500;
  font-size: 30px;
}
.content-1 #nickname {
  font-style: italic;
  position: relative;
  bottom: 45px;
}
h2 {
  font-family: "Noto Sans", sans-serif;
  position: relative;
  top: 10px;
}
a {
  color: black;
}
#info {
  /* border: 1px solid red; */
  position: relative;
  bottom: 50px;
  flex-basis: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
#info .content {
  border-top: 0.5px solid black;
}
@media (max-width: 275px) {
  #header {
    display: none;
  }
}
@media print {
  .no-print,
  .no-print * {
    display: none !important;
  }
}
