@charset "UTF-8";

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

:root{
    --main-color: #F0E8C2;
    --p-color: #573A37;
    --title-color: #291B1A;
    --bg-color: #573824;
}

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

body{
    font-family: 'Alice', Helvetica, sans-serif;
    background: var(--bg-color) url(img/bg-img.jpg) no-repeat fixed;
    background-size: cover;
}

main{
    background-color: var(--main-color);
    max-width: 800px;
    padding: 24px;
    margin: 48px auto;
    border-radius: 24px;
    box-sizing: border-box;
}

img{
    border-radius: 16px;
}

section{
    padding: 24px;
}

div + div{
    margin-top: 24px;
}

h1{
    font-size: 40px;
    line-height: 140%;
    color: var(--title-color);
    margin-bottom: 4px;
}

#about p + p{
    margin-top: 12px;
}

h2{
    font-size: 24px;
    color: var(--title-color);
    margin-bottom: 4px;
    line-height: 150%;
}

p{
    font-size: 16px;
    color: var(--p-color);
    line-height: 150%;
}

ul{
    padding-left: 24px;
    line-height: 150%;
}

footer{
    color: var(--main-color);
    text-align: center;
    padding-bottom: 48px;
}

footer img{
    vertical-align: middle;
}