@import url(import.css);

html {
    font-size: clamp(1.5rem, 5vw, 3rem);
  scroll-behavior: smooth;
}

* {
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100vw;
    overflow-x: hidden;
     background: #8DD5E3;
     box-sizing: border-box;
}
main {
    background:
        linear-gradient(
            to bottom,
            rgba(174, 220, 243, 0.1),
            rgba(174, 220, 243, 0.7),
            rgba(255, 249, 224, 0.85)
        ),
        url("http://localhost:10054/wp-content/uploads/2026/01/backgroundslangformationonlin-scaled.png");
    background-repeat: no-repeat;
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 2rem 3.5rem 4rem;
}