:root {
	--side-margin: 1em;
	--horizontal-margin: 1em;
	
	--color-blue: #b8d8f2;
	--color-lightblue: #d6e7f8;
	--color-yellow: #f9e199;
	--color-lightyellow: #fcecc7;
	--color-rosa: #f2b7d6;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/CenturyGothic-BoldItalic.woff2') format('woff2'),
        url('../fonts/CenturyGothic-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/CenturyGothic-Bold.woff2') format('woff2'),
        url('../fonts/CenturyGothic-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/CenturyGothic-Italic.woff2') format('woff2'),
        url('../fonts/CenturyGothic-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/CenturyGothic.woff2') format('woff2'),
        url('../fonts/CenturyGothic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/***************************************************************************/

html:focus-within {
  scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    margin: 0;
    
    font-family: Century Gothic;
    font-size: 16px;

    background-color: #d8d8d8;
    
    height: 100%;
}

#container {
	display: block;
	width: 100%;
	
	text-align: center;
}

/***************************************************************************/

.blue {
	background: var(--color-blue);
}

.lightblue {
	background: var(--color-lightblue);
}

.yellow {
	background: var(--color-yellow);
}

.lightyellow {
	background: var(--color-lightyellow);
}

.rosa {
	background: var(--color-rosa);
}

/***************************************************************************/

.sponsor-logo {
	width: 9%;
	padding: 1em;
}

@media all and (width <= 800px) {
	.sponsor-logo {
		width: 15%;
	}
}

@media all and (width <= 600px) {
	.sponsor-logo {
		width: 20%;
	}
}

