/* ###### Normalize.css ###### */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}
/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}
/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ###### [/] Normalize.css ###### */


* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* ###### [/] FONTS ###### */

/* ###### VARIABLES ###### */
:root {
  --color-dark: #1e1e1e;
  --color-light: #f7f7fa;
  --color-brand: #EB0609;
  --base-size: 16px;
  --duration: 90s;
}
/* ###### [/] VARIABLES ###### */

/* ###### DEFAULT STYLES ###### */
html,body{
  text-rendering: optimizeLegibility;
  height:100%;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: var(--color-light);
  color: var(--color-dark);
}
/* ###### [/] DEFAULT STYLES ###### */

.app{
  padding: 1.5rem;
}

.brand{
  padding: 1rem 0rem;
  margin-bottom: 4rem; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo{
  width:100%;
  height: auto;
  max-width: 720px;
}
.content{
 display: flex;
 flex-direction: column;
 align-items: center;
}
.agenda{
  max-width: 600px;
  list-style-type: none;
  margin:0;
  padding:0;
}
.agenda--entry{
  margin-bottom: 4rem;
}

.link{
  display: block;
  height: auto; 
  overflow: hidden;
  border: none;
  margin-top: 4rem;
}
.link--important {
  margin-top: 0rem;
  text-align: center;
  
  max-width: 400px;
  padding: 2rem 0;
  border-top: 2px solid var(--color-brand);
  border-bottom: 2px solid var(--color-brand);
  color: var(--color-brand);
}

.footer{
  margin: 4rem 2rem;
  text-align: center;
}
.type--XL{

  --minFontSize: 40px;
  --maxFontSize: 70px;
  --scaler: 10vw;

  font-size: clamp( var(--minFontSize), var(--scaler), var(--maxFontSize) );
  
  letter-spacing: -0.175rem;
  margin-bottom: 0.75rem;
}
.type--M{
  --minFontSize: var(--base-size);
  --maxFontSize: 24px;
  --scaler: 4vw;

  font-size: clamp( var(--minFontSize), var(--scaler), var(--maxFontSize) );
}

a{
  text-decoration: none;
  border-bottom: 1px dotted var(--color-dark);
  color: var(--color-dark);
}
@media (min-width: 768px) {
  body{
    padding: 3rem;
  }
}


strong{
  text-transform: uppercase;
}
