/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/

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

* {
  line-height: 0;
  margin: 0;
}

:root {
  interpolate-size: allow-keywords;
}

body {
  -webkit-font-smoothing: antialiased;
}

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

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

input::placeholder {
  color: inherit;
  opacity: 1;
}

a, p, h1, h2, h3, h4, h5, h6, button, span, aside, section {
  line-height: calc(1em + 0.5rem);
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}
:root {
    --dm-sans: 'DM Sans', Helvetica, sans-serif;
    --league-script: 'League Script', cursive;
    --cutive: 'Cutive', Courier, monotype;

    --black: rgba(0, 0, 0, 0.87);
    --white: #FFFFFC;

    --dusk-blue: #464D77;
    --soft-blush: #FFD9DA;
    --yellow: #FBFF12;
    --neon-pink: #FF206E;
    --deep-walnut: #4C2E05;

    --default-font-size: calc(1rem + 0.5vw);


    font-size: var(--default-font-size);
}

.font-dm-sans {
    font-family: var(--dm-sans);
    font-weight: 300;
    letter-spacing: -5%;
}

.font-league-script {
    font-family: var(--league-script);
    font-size: 1.5em;
    letter-spacing: normal;
}

.font-cutive {
    font-family: var(--cutive);
    letter-spacing: normal;
}

.bg-primary-color {
    background-color: var(--white);
}

.text-primary-color {
    color: var(--black);
}

.text-primary-font {
    font-family: var(--dm-sans);
    font-weight: 300;
    letter-spacing: -5%;
}

strong {
    font-weight: 600;
}

img {
    height: auto;
    width: 100%;
}
body {
    background-color: var(--soft-blush);
}

main {
    align-items: center;
    color: var(--dusk-blue);
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    margin: 0 auto;
    width: 75vw;
    max-width: 600px;
    min-height: 100dvh;
}

.links {
    justify-content: center;
    display: flex;
    font-size: 2rem;
    gap: 1rem;
    width: 100%;
}

a, a:visited {
    color: var(--neon-pink);
    text-decoration: none;
}

a:hover, a:active {
    color: var(--yellow);
    text-decoration: underline;
}

@media (orientation: landscape) {
    main {
        width: 50vw;
    }

    .links {
        font-size: 1.5rem;
    }
}