:root {
    --text: #5b2a36;
    --background: #ffdfdf;
    --background_clear: #ffdfdfb5;
    --primary: #ffb3c6;
    --secondary: #74faff;
    --accent: #74daff;
    --dark_primary: #dd5073;
    /* --darkest_primary: #53212e; */
    font-size: clamp(12px, 1.5vw, 16px);
}

html {
    font-family: Georgia, 'Times New Roman', Times, serif;
    width: 100%;
}

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

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

body {
    margin: 0px;
    padding: 0px;
    color: var(--text);
    background-color: white;
    width: 100%;
    position: relative;
}

a {
    color: var(--text);
}