@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');

:root {
    --red: salmon;
    --yellow: lightyellow;
    --blue: paleturquoise;
}

body {
    background-color: var(--yellow);
    font-family: 'Fredoka One', cursive;
}

header {
    padding: 2em;
    background-color: var(--red);
    color: white;
    position: fixed;
    width: 100%;
    font-size: 20px;
    z-index: 2;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 50px;
}

.logo {
    font-size: 100px;
}

nav ul{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style: none;
}

nav a {
    color: white;
    text-decoration: none;
    transition: .3s all ease;
}

nav a:hover {
    color: var(--blue);
    text-decoration: none;
    font-size: larger;
    font-weight: bolder;
}

.banner {
    background-image: url("../images/cover.png");
    background-size: cover;
    height: 80vh;
    align-content: center;
}

.banneritems {
    position: absolute;
    padding: 10em;
    width: 100%;
    height: 50vh;
    text-align: center !important;
    display: table-cell;
    vertical-align: middle;
    margin: auto;
    top: 30%;
    color: var(--red);
}

.main {
    
}

.sectiontitle {
    text-align: center;
    color: var(--red);
}

.thumbnails {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 2em;
    padding: 2em;
    color: white;
}

.thumbnail img {
    max-width: 90%;
    padding: 2em;
}

.thumbnail {
    text-align: center;
    background-color: var(--red);
    border-radius: 10px;
}

.thumbnail p {
    margin-left: 4em;
    margin-right: 4em;
}

.thumbnail a {
    color: white;
    text-decoration: none;
}

.about {
    display: flex;
    flex-direction: row;
    text-align: left;
}

.about img {
    width: 50%;
}

.about h3 {
    padding: 1em;
    text-align: center;
}

.about p {
    font-size: 20px;
}

.contactbox{
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto;
    background-color: var(--red);
    border-radius: 2em;
    padding: 2em;
    margin: 2em;
    color: white;
}

input {
    width: 5em;
}


footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2em;
    background-color: var(--blue);
    color: var(--red);
    font-size: 20px;
}