:root {
  --green: hsl(75, 94%, 57%);
  --grey-700: hsl(0, 0%, 20%);
  --grey-800: hsl(0, 0%, 12%);
  --grey-900: hsl(0, 0%, 8%);
  
}

* {
  box-sizing: border-box;
  font-family: "Inter";
}

html{
  height: 100vh;
}

body {
  margin : 0;
  height: 100%;
  background-color: var(--grey-900);
  display: flex;
  justify-content:center;
  align-items: center;

}

main {
  color: white;
  background-color: var(--grey-800);
  width :  300px;
  height : 465px;
  
  display: flex;
  flex-direction: column;
  align-items: center;
}

.img-box {
  margin-top:35px;
  width: 25%;

}

img {
  width: 100%;
  border-radius: 50%;
}

h1 {
  margin-bottom : 5px;
  font-size: 1.3rem;
  font-weight: 350  ;
}

.location {
  margin-top : 0px;
  color: var(--green);  
  font-size: 0.7rem;
  font-weight: 500;
}

.intro {
  font-size: 0.75rem;
  font-weight: 200;
  margin-bottom: 20px;
}

nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;

  font-size: 0.75rem;
  text-align: center;
  font-weight: 500;
}

.box {
  width : 80%;
  padding: 10px;
  background-color: var(--grey-700);
  margin-bottom: 10px;
  border-radius: 5%;
}

.box:active {
  background-color: var(--green);
}