body, html{
  margin: 0;
  padding: 0;
}

img{  
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  -webkit-user-drag: none;
}

.container{
  width: 100%;
  height: 500px;
  font-family: 'Inter', sans-serif;
}

.container-frame{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5%;
}

.logo{
  display: flex;
  justify-content: center;
  background-image: url(https://drive.google.com/uc?export=view&id=1XGcXHVTDKhbvr_b70XznVa2d03N1ObB9);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto min(25vw, 180px);
  height: 30%;
  width: 100%;
}

.logo .layer{
  position: absolute;
  width: 100%;
  height: 30%;
}

.logo img{
  width: auto;
  height: min(25vw, 180px)
}

.home{
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1{
  margin-bottom: 0;
}

h2{
  font-weight: 500;
  font-size: 1.3rem;
}

h2#info{
  text-align: center;
}

.home-container{
  width: 95%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.cookie{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cookie-container{
  width: 95%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

@media screen and (max-width: 768px){
  .home-container, .cookie-container{
    text-align: justify;
  }
}