*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:var(--background);
  font-family:var(--font-family);
  color:var(--text-white);
}

a{
  text-decoration:none;
}

img{
  width:100%;
  display:block;
}

button{
  cursor:pointer;
  border:none;
  outline:none;
  font-family:var(--font-family);
}

.brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

.brand-logo img {
    width: 150px;
    height: auto;
    display: block;
    object-fit: contain;
}