/* base.css */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  background-image: url("/static/media/advoassist_bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; 
  height: 100%;
  font-family: var(--font);
  font-size: 16px;
  line-height: 110%;
  margin: 0;
}

main {
  padding: min(2rem, 8%);
}

@media(max-width:1024px) {

}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fade-in 0.3s ease-out both;
}

input:disabled, button:disabled {
  cursor: not-allowed;
}