/* ==========================================================
   CONTEMPO DANCE ACADEMY
   RESET CSS v1.0

   Modern CSS Reset
========================================================== */


/* Box sizing */

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


/* Remove default margin */

* {
    margin: 0;
}


/* Improve text rendering */

html {
    -webkit-text-size-adjust: 100%;
}


/* Body */

body {
    min-height: 100vh;
}


/* Lists */

ul,
ol {
    list-style: none;
    padding: 0;
}


/* Media */

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}


/* Form elements */

input,
button,
textarea,
select {
    font: inherit;
}


/* Textareas */

textarea {
    resize: vertical;
}


/* Tables */

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* Links */

a {
    text-decoration: none;
}


/* Buttons */

button {
    background: transparent;
    border: none;
}


/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
    font: inherit;
}


/* Paragraphs */

p {
    overflow-wrap: break-word;
}


/* Root stacking */

#root,
#__next,
#app {
    isolation: isolate;
}