* {
  margin: 0px;
  padding: 0px;
}

.inter-400 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: hsl(0, 0%, 8%);
  font-family: "Inter", sans-serif;
  color: white;
  font-size: 14px;
  height: 100vh;
  display: grid;
  place-items: center;
}

.container {
  width: 400px;
  background-color: hsl(0, 0%, 12%);
  border-radius: 10px;
  text-align: center;
}

img {
  border-radius: 50%;
  width: 100px;
  padding-top: 30px;
  padding-bottom: 30px;
}

h1 {
  font-family: "Inter", sans-serif;
  padding-bottom: 5px;
}

.address {
  color: hsl(75, 94%, 57%);
  font-weight: 600;
}

li {
  list-style: none;
}

.quote {
  padding-top: 20px;
  padding-bottom: 20px;
}

.nav ul {
  display: flex;
  flex-direction: column;
  /* background-color: aqua; */
  gap: 20px;
}

.nav {
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
}

.item {
  height: 40px;
  background-color: hsl(0, 0%, 20%);
  border-radius: 10px;
  line-height: 40px;
}

.item a:link,
.item a:visited {
  color: white;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.item a:hover {
  background-color: hsl(75, 94%, 57%);
  border-radius: 10px;
  color: black;
}

.item a:active {
  background-color: hsl(0, 0%, 20%);
  border-radius: 10px;
  color: red;
}

@media only screen and (max-width: 460px) {
  .container {
    width: 335px;
  }

  .nav {
    padding-left: 30px;
    padding-right: 30px;
  }
}
