:root, :root a {    
    font-family: 'Roboto', sans-serif; 
    font-size: 1rem;       
    line-height: 1.5;        
    margin: 0;
    padding: 0;    
}
:root a {
    text-decoration: none;
    color: blue;
}

p {
    max-width: 70ch;
}

h1, h2, h3 {    
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    line-height: 1;
    margin: 0;
    padding: 0.2em 0;
    color: #e77144;
}
h2 { 
    font-size: 1.5rem;
}

#header {       
    background-color: #fedda6;
    background-image: linear-gradient(#fedda6, #e77144);
    padding: 1rem 3rem;       
    min-height: 120px;    
 }
 #header a {
        font-family: 'Fredoka One', cursive;
        font-size: 6rem;
        text-transform: uppercase;
        color: white;
        text-shadow: #3b3b3b 4px 4px;
        line-height: 0.8; 
        
 }

#topnav, #footer {
    background-color: #e77144;
    display: flex;    
    box-shadow: black 0px 4px 10px;
    position: relative;
    z-index: 100;
}
#topnav ul {
    display: flex;    
    list-style: none;
    padding: 0.2rem 0rem;
    margin: 0;
    flex-grow: 1;
}
#topnav li {    
    padding: 0 1em;
}
#topnav .contact { 
    margin-left: auto;
}
#topnav a, #footer, #footer a {
    color: white;
    text-decoration: none;    
}
#footer {
    flex-grow: 1;
    justify-content: space-evenly;
}

body {    
    /*border: 1px solid black;*/
    margin: 0;
    padding: 0;
    
    box-shadow:black 0px 0px 10px;    
}

#content { 
    padding: 1rem;    
}
#content::after {
    content: "";
    
    background-image: url(/images/smiley.png);
    background-position: top right;
    background-repeat: no-repeat;
    opacity: 0.2;
    
    top: 200px;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;   
  }

.big-button {
    background-color: #e77144;
    border: none;
    text-align: center;
    text-decoration: none;
    
    font-size: 1.4rem;
    margin: 4px 2px;
    cursor: pointer;
    /*border: 1px solid black;*/  
    border-radius: 4px;
    padding: 0.5em 1em;
    cursor: pointer;
    color: white;
  }

#resizer form {    
    border: 1px solid #fedda6;
    width: 80%;
    margin: auto;
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    background-color: #fedda6;
}
  
#resizer input[type=text] {
    box-sizing: border-box;
    border: 2px solid #e77144;
    border-radius: 1rem;
    
    max-width: 10ch;
    padding: 1rem;
  }

  #feedback {      
      width: 90%;
      margin: auto;
  }
  .note-under {
      line-height: 1;
      margin: 0;
      padding: 0;
  }
  .note {
      font-style: italic;
      font-weight: 300;
      line-height: 1;
      font-size: 0.8em;
      margin: 0;
      padding: 0;
      margin-bottom: 1em;
  }