@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&display=swap');

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

:root {
    --defaultFont: Verdana, Geneva, Tahoma, sans-serif;
    --titleFont: 'Passion One', cursive;
    --contentFont: 'Sriracha', cursive;
}

*{
    margin: 0px;
    padding: 0px;
}

html, body{
    min-height: 100vh;
    background-color: darkgray;
    font-family: var(--defaultFont);
}

header{
    background-color: black;
    color: white;
    text-align: center;
    font-family: var(--titleFont);
}

header > h1{
    padding-top: 50px;
    font-variant: small-caps;
    font-size: 9vw;
}

header > p {
    padding-bottom: 50px;
    font-size: 2.5vw;
}

a {
    color: white;
    text-decoration: none;
    font-weight: bolder;
}

a:hover {
    text-decoration: underline;
}

section {
    padding: 10vh 0 10vh 30px;
    line-height: 2em;
    font-family: var(--contentFont);
    font-size: 3vw;
}

section > p {
    padding-bottom: 1em;
}

.normal{
    background-color: white;
    color: black;
}

.image{
    background-color: rgb(51, 51, 51);
    color: white;
    box-shadow: inset 6px 6px 13px rgb(36, 36, 36);
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed;
}

.image > p {
    display: inline-block;
    padding: 5px;
    background-color: rgb(0, 0, 0, 0.235);
    text-shadow: 2px 1px black;
}

#img1 {
    background-image: url(../assets/images/background001.jpg);
}

#img2 {
    background-image: url(../assets/images/background002.jpg);
}

#img2 > p {
    background-color: rgba(0, 0, 0, 0.418);
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    font-size: 2vw;
    padding: 10px;
}

