@font-face {
  font-family: alice;
  src: url(Alice-Regular.ttf);
}

body{
  margin: 0;
  background-image: url(images/bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: alice;
}

.container{
    height: 80vh;
    width: 90vw;
    backdrop-filter: blur(4px) contrast(100%);
    -webkit-backdrop-filter: blur(4px) contrast(100%);
    box-shadow: 0 0 16px 2px #ffffff24;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes load {
  0%   {opacity: 0;}
  100% {opacity: 1;}
}

.logo{
  width: 60%;
  filter: drop-shadow( 0px 0px 14px white);
  margin-top: 10%;
  animation-name: load;
  animation-duration: 2s;
}
.title{
  color: #512c1d;
  filter: drop-shadow( 0px 0px 5px white);
    margin: 30px;
    text-align: center;
    animation-name: load;
    animation-duration: 2s;
    text-transform: uppercase;
}

@media (min-width: 768px) {
  .container {
    width: 90vw;
  }
  .logo{
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .container {
    width: 70vw;
  }
  .logo{
    width: 40%;
  }
}

@media (min-width: 1280px) {
  .container {
    width: 40vw;
  }
}