body {
    margin: 0;
    padding: 0;
    background: url('background.jpeg') no-repeat center center/cover;
    font-family: 'Pridi', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
  margin-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 24, 138, 0.03);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
  height: 100%;
    box-sizing: border-box;
}

#logo {
    position: relative;
    top: -5px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  margin-bottom: 0px;
}

#logo img {
    height: 360px;
}

#text {
    font-size: 4em;
    font-weight: 600;
    color: white;
   text-shadow: -1.5px -1.5px 0 #000, 1.5px -1.5px 0 #000, -1.5px 1.5px 0 #000, 1.5px 1.5px 0 #000;
}

#thanks {
    font-size: 1.5em;
    font-weight: 300;
    color: white;
   text-shadow: -1.5px -1.5px 0 #000, 1.5px -1.5px 0 #000, -1.5px 1.5px 0 #000, 1.5px 1.5px 0 #000;
}

#download button {
    margin: 20px;
    font-size: 2em;
    font-weight: 200;
   text-shadow: -1.5px -1.5px 0 #000, 1.5px -1.5px 0 #000, -1.5px 1.5px 0 #000, 1.5px 1.5px 0 #000;
    background-color: transparent; 
  color: #fff; 
  border: 2px solid #fff; 
  padding: 10px 20px; 
  border-radius: 5px; 
  cursor: pointer; 
  backdrop-filter: blur(20px); 
}

#download button:hover {
    background-color: rgba(255, 255, 255, 0.1); 
  color: #000; 
  border: 2px solid #1e3c72; 
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

#iglogo {
    margin-top: 20px;
}

#iglogo img {
    height: 50px;
}

@media screen and (max-width: 700px) 
{
  body 
  { 
    background: url('background.jpeg') repeat-y center center/cover; 
  } 
  
  #logo img 
  
  { 
    height: 300px; 
  } 
  
  .container 
  { 
    padding: 10px; 
    height: auto; 
  } 
  
  #text 
  { 
    font-size: 2.5em; 
  } 
  
  #thanks 
  { 
    font-size: 1.6em; 
  } 
  
  #download button 
  { 
    font-size: 1.5em;
  }
  
  #iglogo img 
  { 
    height: 50px; 
  } 
}