@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --green: hsl(75, 94%, 57%);
  --white: hsl(0, 0%, 100%);
  --grey: hsl(0, 0%, 20%);
  --dark-grey: hsl(0, 0%, 12%);
  --Off-black: hsl(0, 0%, 8%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
body {
  background-color: var(--Off-black);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--dark-grey);
  padding: 12px;
  gap: 12px;
  border-radius: 10px;
  max-width: 920px;
}
h1 {
  color: var(--white);
  text-align: center;
  font-weight: 700;
}
p {
  color: var(--white);
  text-align: center;
}
#address {
  color: var(--green);
  text-align: center;
  font-weight: 400;
  line-height: 20px;
}
div {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
img {
 margin-left: 30%;
  height: 80px;
  width: 80px; 
  border-radius: 40px;
}
nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1px;
  /* border: 1px solid orange; */
}
#description{
    /* border: 1px solid greenyellow; */
   font-size: 15px;
}
button{
    background-color: var(--grey);
    color: var(--white);
    width: 300px;
    height: 30px;
    margin:10px;
    border-radius: 10px;
    border: none;
}
button:hover{
    background-color: var(--green);
    color: var(--Off-black);
    cursor: pointer;
}
#container{
    height: 70vh;
    width: 50vh;
}