/* Import font */
@import url(./fonts/Quicksand/Quicksand.css);

/* Import child styles */
@import "desktop.css" only screen and (min-width: 601px);
@import "mobile.css" only screen and (max-width: 600px);

* {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    color: rgb(20, 20, 20);
    /* --spacer-color: rgba(127, 255, 212, 0.8); */
    /* --spacer-color: rgb(164, 255, 225); */
    --spacer-color: inherit;
    --main-color: aliceblue;
    /* --media-box-color: cadetblue; */
    /* --media-box-color: rgba(125, 251, 255, 0.295); */
    --media-box-color: inherit;
    --main-boder-radius: 50px;
    --link-color: #005fad;
    --transition-time: 0.25s;
    --footer-font-color: lightgray;
    --footer-bg-color: inherit;
}

body {
    background-color: var(--main-color);
}

a {
    color: var(--link-color);
    /* text-decoration: none; */
}

footer {
    background-color: var(--footer-bg-color);
}
footer * {
    font-size: x-small;
    color: var(--footer-font-color);
    text-align: center;
}
