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

.container {
  height: 100svh;
  width: 100svw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top:3px;
}

.centered-element {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo {
  width: calc( 100% - 6px );
  margin-left:2px;
}

.logo img {
  width: 100%;
  height: auto;
}



@media only screen and (min-width: 768px) {

.logo {
  width: 33svw;
  margin-top:0px;
}
.container{
  align-items: center;
  justify-content: center;
}
}