/* =========================================================
   BASE
   ========================================================= */

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

html, body {
    height: 100%;
    background: #7100ae

}

/* =========================================================
   LAYOUT
   ========================================================= */
.full-center {
    display: grid;
    place-items: center;
    height: 100vh;
    width: 100%;
    text-align: center;
    overflow: visible;
}

/* =========================================================
   PURE LIME NEON TITLE
   ========================================================= */
.page_title {
    position: relative;
    margin: 0;
    font-size: clamp(3rem, 10vw, 10rem);
    letter-spacing: 1px;
    color: #cdc1b0;
    font-family: "Zain", sans-serif;
    font-weight: 400;
    font-style: normal;
}
