:root {
    --cosy_blue: #314F6F; 
    --cosy_blue_light: #728A97;
    --cosy_orange: #E98F20; 
    --cosy_beige: #D7D0C1;
    --toilet_green: #6DA060;
}

@font-face {
    font-family: 'CozyFont';
    src: url('../fonts/Cozy.woff') format('opentype'); 
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(var(--cosy_blue), #181D27);
  font-family: 'CozyFont', sans-serif;

  /* helps centering any content */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

a {
  color: var(--cosy_orange);
  text-decoration: none;
}

.hoverable {
  transition: transform 0.6s ease, filter 0.3s ease;
}

.hoverable:hover {
  filter: brightness(1.05);
  transform: scale(1.03);
}

.cosy-square {
    background-color: var(--cosy_blue);
    border-radius: 20px;
    box-shadow: 0px 0px 8px rgba(0,0,0,0.25);
    overflow: hidden;

    /* Align text in the center */
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
}

.impressum-block {
  margin-bottom: 5vw;
  width: 80vw;
  height: 80vw;
  padding: 2vw;
}

.back-button {
  margin-top: 12vw;
  margin-bottom: 12vw;
  width: 30vw;
  height: 10vw;
}

.datenschutz-block {
  width: 80vw;
  height: auto;
  margin-bottom: 10vw;
  padding: 2vw;
}

/* For desktop */
@media (min-width: 768px) {

.impressum-block {
  margin-bottom: 100px;
  width: min(80vw, 700px);
  height: 500px;
  padding: 2vw;
}

.back-button {
  margin-top: 80px;
  margin-bottom: 80px;
  width: 200px;
  height: 80px;
}

.datenschutz-block {
  width: min(80vw, 700px);
  height: auto;
  margin-bottom: 10vw;
  padding: 2vw;
}

}
