@charset "UTF-8";

@font-face {
    font-family: Passion One R;
    src: url(fonts/PassionOne-Regular.ttf);
}

@font-face {
    font-family: Passion One B;
    src: url(fonts/PassionOne-Bold.ttf);
}

@font-face {
    font-family: Passion One Bk;
    src: url(fonts/PassionOne-Black.ttf);
}

@font-face {
    font-family: Merienda;
    src: url(fonts/Merienda-VariableFont_wght.ttf);
}

:root {
    --font1: Verdana, Geneva, Tahoma, sans-serif;
    --font2: 'Passion One R';
    --font3: 'Passion One B';
    --font4: 'Merienda';
}

html, body {
    background-color: white;
    min-height: 100vh;
}

header {
    background-color: black;
    color: white;
    text-align: center;
}

header h1 {
    font-family: var(--font3);
    font-size: 10vw;
    padding-top: 50px;
}

header p {
    font-family: var(--font1);
    padding-bottom: 50px;
}

header a {
    color: white;
    font-size: 1.2em;
    font-weight: bolder;
    text-decoration: none;
}

header a:hover {
    text-decoration: underline;
}

main p {
    font-size: 3.5vw;
    font-family: var(--font4);
    font-style: italic;
    width: 50vw;
    line-height: 2em;
}

main #landscape {
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    background-attachment: fixed;
    padding: 20vh 5vh;
}

main #landscape p {
    color: white;
    background-color: rgba(0, 0, 0, 0.322);
    padding: 20px;
}

main .land1 {
    background-image: url(images/background001.jpg);
}

main .land2 {
    background-image: url(images/background002.jpg);
    color: white;
}

main #normal {
    padding: 10vh 5vh;
}

main #normal p {
    margin: 70px 0px;
}

footer {
    color: white;
    background-color: black;
    height: 5vh;
    font-family: var(--font1);
    font-size: 2vw;
    display: flex;
    align-items: center;
}

footer p {
    margin: auto;
}

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