/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
 /*End of CSS reset */

 /* General CSS */

:root {
  --primary-bg-color: #F5CCE8;
  --hover-line: #4CE0B3;
  --footer-color: #4A2040;
  --stand-out-background: #4A2040;
  --stand-out-text: #FFDF1B;


  --header-size: 45px;
  --subheader-size: 35px;
}

.concert-one-regular {
  font-family: "Concert One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body{
    box-sizing: border-box;
    background-color: var(--primary-bg-color);
}

header{
    width: 100%;
    text-align: center;
    background-color: white;
    padding: 2em 0;
    justify-content: space-between;
}

header h1{
	font-size: 49px;
    font-family: "Concert One", sans-serif;
}

nav{	
    display: block;
    margin-top: 2.5em;
}

 
nav ul{
	display: flex;
	flex-direction: row;
	margin: auto;
	align-content: center;
	justify-content:space-around;
	font-size: 1.75em;
}

nav a {
    position: relative;
    font-size: 35px;
    text-decoration: none;
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    color: black;
    padding-bottom: 8px;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;  
    border-radius: 999px;            
    background-color: var(--hover-line);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

nav a:hover::after {
    transform: scaleX(1);
}

nav a.selected::after {
    transform: scaleX(1);
}



/* Home CSS */


.top{
	width: 70vw;
	display: flex;
	place-self: center;
	align-items: center;
    flex-direction: column;
	margin: auto;
	border: 3px black outset;
	background-color: var(--stand-out-background);
    color: var(--primary-bg-color);
	padding: 2em;
    text-align: center;
    justify-content: center;
    line-height: 45px;
    margin-top: 15px;
}

.top h2{
    font-size: var(--header-size);
}

.top h3{
    font-size: var(--subheader-size);
}

