/* Defaults */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

/* Color theme */

:root {
    --accent-color: #ad0808;
    --dark-color: #333;
    --not-so-dark-color: #666;
    --light-color: #ccc;
    --background-color: #fff;
    --background-cover-color: rgba(255, 255, 255, .9);
    --background-dark-color: #333;
}


/* Main Layout */

main {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

section, footer {
    border-top: solid 1px var(--light-color);
    border-bottom: solid 1px var(--light-color);
    background-color: var(--background-cover-color);
    padding-left: clamp(100px, 18vw, 400px);
    padding-right: clamp(100px, 18vw, 400px);
    padding-top: clamp(30px, 5vh, 50px);
    padding-bottom: clamp(30px, 5vh, 50px);
    margin-bottom: clamp(100px, 20vh, 200px);
}

section:first-child {
    border: none;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 0;
}


/* Main Typography */

body {
    font-family: "Albert Sans", sans-serif;
    color: var(--dark-color);
}

h2 {
    font-family: "Cherry Swash", cursive;
    font-weight: normal;
    color: var(--dark-color);
    font-size: 64px;
    line-height: 110%;
}

img.postcard-image, div.postcard-image {
    height: auto;
    display: block;
    box-shadow: var(--light-color) 4px 4px 3px;
    border: 1px solid var(--light-color);
    background-color: var(--background-color);
}

footer {
    color: var(--light-color);
    background-color: var(--dark-color);
}

/* Welcome Layout */

section#welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: unset;
    margin-bottom: 0;
}

section#welcome div {
    margin-left: 20vw;
}

/* Welcome Typography */

section#welcome h1 {
    font-family: "Albert Sans", sans-serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--accent-color);
    margin-bottom: 15px;
}

section#welcome h2 {
    font-size: 64px;
    line-height: 110%;
}


/* Postcards Layout */

section#postcards > div {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: clamp(20px, 3vw, 40px);
    margin-top: clamp(30px, 5vw, 50px);
    font-weight: 300;
}

section#postcards figure img {
    width: 300px;
    margin-bottom: 10px;
}

section#postcards > div > div:last-child{
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*Postcards Typography */

section#postcards {
    font-size: 24px;
    color: var(--not-so-dark-color);
}


/* Info Layout and Typography */

section#info p {
    font-family: Ysabeau, sans serif;
    font-size: 22px;
    margin-top: 10px;
}