
/* COLORS */

:root {
  --color-primary: #285AB4;
  --color-secondary: #FFC533;
  --color-black: black;
  --color-white: #F5F5F5;
}

body {
  background-color: #D2F5FF;
}

/* FONT STYLES */

@font-face {
    font-family: 'Milkshake';
    src: url('fonts/Milkshake.woff2') format('opentype');
    font-weight: bold;
    font-style: normal;
}

h1 {
  color: var(--color-primary);
  font-size: 100px;
  line-height: 4.5rem;
  font-family: 'Milkshake';
  margin: 0px;
  padding-bottom: 80px;
}

p {
  font-size: 16px;
}

.wrapper {
    display: flex;
    flex-direction: column; /* stack items vertically */
    justify-content: center; /* center vertically */
    align-items: center; /* center horizontally */
    min-height: 100vh; /* full viewport height */
    text-align: center;
    
}


/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 90px;
    }


}