/*  ============= WEB BROWSER RESETS ============ */
* { margin: 0; padding: 0; border: none }
*, *::before, *::after { box-sizing: border-box }
html { height: 100%; font-size: 100%; font: inherit; vertical-align: baseline;
scroll-behavior: smooth; scroll-padding-top: 20px }
body { max-width: 1920px; line-height: 1.5; margin-left: auto; margin-right: auto; 
min-height: 100vh; text-rendering: optimizeSpeed }  
img { width: 100%; height: auto; display: block }
h1, h2, h3, h4 { width: 100% }
input, button, textarea, select { font: inherit }

/* ================= ENDS ================ */

/* Desktops */
@media (min-width: 768px) { body { padding: 4% 20% } }

/* Mobiles */
@media (max-width: 767px) { body { padding: 12% 8% } }


/* Web page */
body {
    background-color: #FFFFBD;
}

/* Main heading */
h1 {
    font-family: serif;    
    font-size: 84px;
    line-height: 1.1;
    font-weight: normal;
    color: #3434B0;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 32px;
}

/* Small headings */
h2 {
    font-family: serif;    
    font-size: 26px;
    color:#3434B0;
    line-height: 1.5;
    margin-bottom: 42px;
}

/* Smaller headings */
h3 {
    font-family: serif;    
    font-size: 42px;
    color: #000;
    letter-spacing:-1px;
    margin-top: 40px;
    margin-bottom: 2px;
    line-height: 1.2;
}

/* Text paragraphs */
p {
    font-family: serif;
    font-size: 22px;
    color: #455C80;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 22px;
}

/* Images */
img {
    margin-bottom: 42px;
    /* Drop shadow effect at right and bottom of image*/
    box-shadow:  8px 10px 8px #888;
}
/*Hyperlinks*/
a {
    font-size: 22px;
    color: #455C80;
}

/* Passive link styles */
            
a:link, a:visited {
    text-decoration: none;
    padding-bottom: 2px;
    color: #000;
    border-bottom: solid 2px #000;
} 
            
/* Interactive link styles */
            
a:hover, a:focus, a:active {
    text-decoration: none; 
    padding-bottom: 2px;
    color: #f26f21;
    border-bottom: solid 2px blue;
}
