body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("wallpaper2.jpg");
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    z-index: -1;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.subtitle {
    font-size: 1.2rem;
    margin-top: 0;
    color: #888;
    font-family: 'Montserrat', sans-serif;
}

.logo {
    display: inline-block;
    width: 80px;
    height: 80px;
    margin-right: 1px;
    margin-bottom: 1rem;
    vertical-align: middle;
}

.btn-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    background-color: #373b3e;
    color: #fff;
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    margin: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.btn:hover {
    background-color: #66B2FF;
}

.footer {
  margin-top: auto; /* Push the footer to the bottom */
  font-size: 12px;
  color: #FFFFFF;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
}

.footer a {
  color: #FFFFFF;
}

.footer-logo {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="%23DD2E44" d="M35.885 11.833c0-5.45-4.418-9.868-9.867-9.868-3.308 0-6.227 1.633-8.018 4.129-1.791-2.496-4.71-4.129-8.017-4.129-5.45 0-9.868 4.417-9.868 9.868 0 .772.098 1.52.266 2.241C1.751 22.587 11.216 31.568 18 34.034c6.783-2.466 16.249-11.447 17.617-19.959.17-.721.268-1.469.268-2.242z"/></svg>');
  background-size: cover;
  margin: 0 5px;
}


@media screen and (max-width: 600px) {

  /* CSS rules for screens smaller than 600px */
  .title {
    font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }
    
    .btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .logo {
        width: 70px;
        height: 70px;
        margin-right: 20px;
    }
}
