/******************************************************** art direction */
@font-face {
    font-family: 'Montserrat';
    src:
        url('engine/fonts/montserrat.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --spray-color1: #75B4BA;
    --spray-color2: #2C5E70;
    --spray-color3: #FF7A38;
    --spray-color4: #F3A779;
    --spray-color5: #E2E6E7;

    --spray-radius: 999px;
    --spray-space1: 8px;
    --spray-space2: 16px;
    --spray-space3: 24px;
    --spray-space4: 32px;
    --spray-space5: 40px;
    --spray-space6: 48px;
    --spray-space7: 56px;
    --spray-space8: 64px;
    --spray-space9: 72px;
    --spray-space10: 80px;
}

a{
    color: dodgerblue;
    transition: color 0.5s ease-in-out;
}
a:hover{
    color: powderblue;
}
h1 {
    font-size: clamp(1.8rem, 4vw + 1rem, 3rem);
}

h2 {
    font-size: clamp(1.4rem, 2.5vw + 1rem, 2.2rem);
}

body{
    font-family: 'Montserrat';
    background-color: #ccc;
    transition: all 0.5s ease-out;
}

/******************************************************** grids */
.spray-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.spray-button {
    cursor: pointer;
    border: 0;
    background-color: #111827;
    color: white;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: 600;
    line-height: var(--spray-space2);

    padding-top: var(--spray-space2);
    padding-bottom: var(--spray-space2);
    padding-left: var(--spray-space2);
    padding-right: var(--spray-space2);
}

.spray-button-oval{
    border-top-right-radius: 999px;
    border-bottom-right-radius: 999px;
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
}

/******************************************************** mobile first */



/******************************************************** tablets */
@media (min-width: 768px) {

}


/******************************************************** notebooks */
@media (min-width: 1024px) {

}

/******************************************************** Tvs & Monitores */
@media (min-width: 1440px) {

}

/******************************************************** normalize css */
::selection { background: greenyellow; }
::-moz-selection { background: greenyellow; }
*, *::before, *::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    min-height: 100vh;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
    margin-block-start: 0;
    margin-block-end: 0;
}