@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

: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%);
  --ff-Inter: "Inter", sans-serif;
}

html {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}
body {
  background-color: var(--Off-Black);
}
main {
  background-color: var(--Dark-Grey);
  min-height: 30rem;
  padding: 1rem;
  text-align: center;
  border-radius: 6px;
  margin: 5rem 0;
}
img {
  border-radius: 100%;
  height: 6rem;
}
h1 {
  color: var(--White);
  font-family: var(--ff-Inter);
  font-size: 700;
  
}

p{
  font-family: var(--ff-Inter);
  color: var(--Green);
  padding-bottom: 1rem;
}
h4{
    color: var(--White);
    font-weight: 600;
    font-family: var(--ff-Inter);
padding-bottom: 1rem;
}

button {
    min-width: 100%;
    min-height: 3rem;
    border-radius: 5px;
    border: none;
    margin-bottom: 1rem;
    background-color: var(--Grey);
    color: var(--White);
    font-weight: 700;
    font-size: 15px;
    font-size: 13px;
}

@media(min-width:1024px){
  main{
    min-height: 1rem;
    padding: 1rem;
    margin: 5rem 0;
    min-width: 5rem;
  }

  img{
    height:  5rem;
  }
  h1{
    font-weight: 600;
    font-size: 22px;
    padding: 1rem 0;
  }
  p{
    font-weight: 600;
    padding-bottom: 1.4rem;
    font-size: 13px;
  }
  h4{
    font-weight: 200;
    padding-bottom: 1rem;
    font-size: 14px;
  }
  button{
    min-width: 90%;
    min-height: 2rem;
    margin-bottom: 1rem;
  }
  button:hover{
    cursor: pointer;
    background-color: var(--Green);
    color: var(--Off-Black);
  }
}


