/* Reset */

*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

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

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

textarea {
  white-space: revert;
}

/*************
 * AUS CRAVE *
 *************/

html {
    font-family: 'Trebuchet MS', 'Tahoma', 'Verdana', sans-serif;
}

a {
    cursor: pointer;
}

header, section.hero, footer {
    padding: 3em;
}

@media only screen and (max-width: 600px) {
    header, section.hero, footer {
        padding: 16px;
    }
}

header {
    height: 75vh;
    background: rgb(194,194,255);
    background: linear-gradient(90deg, rgba(194,194,255,1) 0%, rgba(218,202,239,1) 45%, rgba(253,214,219,1) 100%);
    display: flex;
}

header .bottom {
    margin-top: auto;
}

header h1 {
    font-size: 6em;
    font-weight: bold;
    text-transform: uppercase;
}

header p {
    font-size: 3.75em;
}

section.hero p:first-child {
    font-size: 3em;
}

section.hero p:first-child::first-line {
    font-variant: small-caps;
}

section.hero p {
    max-width: 20em;
    font-size: 2em;
    margin-bottom: 1.5em;
}

a.button {
    padding: .5em 1.5em;
    background-color: #1d9bf0;
    color: #fff;
    border-radius: 9999px;
}

a.button:hover {
    background-color: #0c7abf;
}

@media only screen and (max-width: 600px) {
    p.button {
        font-size: 1em !important;
    }
}

picture img {
    width: 100%;
}

footer {
    background-color: #191919;
    color: #999;
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 600px) {
    footer {
        display: block;
    }

    footer div:not(:last-of-type) {
        margin-bottom: 1em;
    }
}

footer a {
    color: #fff;
}

footer p {
    font-size: 1.1em;
    max-width: 25em;
}

footer p:not(:first-child) {
    margin-top: 1em;
}

nav {
     padding: 1em;
     /*background: #fdd6db;*/
     background: rgb(194,194,255);
     background: linear-gradient(90deg, rgba(194,194,255,1) 0%, rgba(218,202,239,1) 45%, rgba(253,214,219,1) 100%);
     display: flex;
     justify-content: space-between;
     align-items: baseline;
 }

nav h1 {
     font-size: 2.5em;
     font-weight: bold;
 }

nav ul {
    font-size: 1.75em;
}

nav li {
    display: inline-block;
}
