* {
  margin: 0;
  padding: 0;
  font-family: 'Albert sans',sans-serif;
  text-decoration: none; 
}

.studio{
  height: 100vh;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.studcard{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;


  padding: 30px;
  padding-top: 50px;
  padding-bottom: 50px;

  border-radius: 40px;
  box-shadow: 0px 0px 46px -27px rgba(75, 75, 75, 0.304);

}

.title{
  font-size: 30px;
  font-weight: 900;

  margin-bottom: 50px;
}
#card{
  display: flex;
  justify-content: center;
  align-items: center;

  font-weight: 900;

  height: 420px;
  width: 420px;
  margin-bottom: 50px; 

  background-color: #fff;
  border: 0.2px solid #0e0e0e71;
  border-radius: 20px;
}
.colorpanel{
  width: 400px;
  display: flex;

  align-items: center;
  justify-content: space-between
}
.color-button{
  font-size: 15px;
  font-weight: 700;

  padding: 10px;
  margin-right: 5px;

  border: 0.8px solid #0e0e0e;
  border-radius: 3px;
  background: none;

  transition: all 0.2s ease;
}
.color-button:hover{
  cursor: pointer;
  background: #0e0e0e11;
}
#reset-btn{
  display: flex;
  justify-content: center;
  align-items: center;
}
#reset-btn img{
  width: 20px;
}