@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');

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

html, body {
  height: 100%;
  font-family: "Lexend Deca", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #fff;
}

body {
  background: #201428 url('../images/background.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 380px;
}

.content {
  flex: 1;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.7);
}

a {
  transition: all 0.3s ease;
  color: #fff;
}

a:hover {
  color: #f0abc2;
}

h1, h2, h3, .h1, .h2, .h3 {
  font-weight: 600;
  margin-bottom: 2rem;
}

h1 {
  font-size: 50px;
  color: #e7305b;
}

h2 {
  font-size: 40px;
  color: #e7305b;
}

h3 {
  font-size: 30px;
}

ul {
  padding-left: 20px;
}

strong {
  font-weight: 600;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1em;
}

header {
  padding-top: 50px;
  margin-bottom: 2rem;
}

header .container {
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}

.logo {
  margin: 10px 20px;
} 

.logo img, {
  transition: width 0.3s ease;
}

.location {
  margin: -40px 20px 10px 20px;
}

.location img {
  transition: width 0.3s ease;
}

main {
  margin-bottom: 3rem;
}

section {
  background: rgba(0, 0, 0, 0.2);
  padding: 2rem;
  margin-bottom: 10px;
  border-radius: 20px;
}

section.main h3 {
  margin-bottom: 0.5rem;
}

footer {
  background-color: #552a68;
  background-image: url('../images/footer.jpg');
  background-repeat: no-repeat;
  background-size: cover; /* Or 'contain' depending on desired fit */
  background-position: top left;
  padding: 2rem;
}

footer a {
  text-decoration: none;
  font-size: 20px;
}

footer div {
  padding: 5px 0;
  position: relative;
}

footer .phone a {
  font-weight: 600;
  font-size: 38px;
}

footer .kristina img {
  transition: width 0.3s ease;
}

@media(max-width: 767.98px) {
  header {
    padding-top: 10px;
  }
  .logo {
    margin: 10px 0;
  }
  .location {
    margin-top: 0;
    width: 260px;
  }
  section,
  footer {
    padding: 1rem;
  }
  footer .kristina img {
    width: 200px;
    margin-bottom: 20px;
  }
}

@media(max-width: 767.98px) {
  header {
    padding-top: 10px;
  }
  .logo {
    margin: 10px 0;
  }
  .location {
    margin-top: 0;
    width: 260px;
  }
  section,
  footer {
    padding: 1rem;
  }
  footer .kristina img {
    width: 200px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 38px;
  }
}