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

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;
    color: #fbb654;
    line-height: 1.5;
}

html {
    background-image: url("./background.svg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 95%;
    background-color: #020e10;
}

p {
    margin: 0;
    padding: 0;
}

body {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
}

body > header > img {
    display: block;
    width: 250px;
    margin-top: -25px;
}

a {
    color: #fbb654;
    transition: color 0.3s ease;
}

a:hover {
    color: #587369;
}

body > main {
    flex: 1 0 auto;
    margin-top: 50px;
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 30px;
    padding: 40px 0;
}

body > main > div.left {
    flex: 0 0 40%;
}

body > main > div.left > img {
    width: 100%;
    height: auto;
    display: block;
}

body > main > div.right {
    flex: 1;
}

body > main > div.right > h1 {
    margin: 0 0 10px 0;
    font-size: 48pt;
    font-weight: 600;
    line-height: 1.05;
}

body > main > div.right > p {
    padding-top: 20px;
    font-size: 18pt;
}

body > footer {
    flex-shrink: 0;
    position: relative;
    min-height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

body > footer > div.left {
    position: absolute;
    left: 0;
    bottom: 20px;
}

body > footer > div.flash {
    position: absolute;
    right: 20px;
    bottom: 0;
    width: 380px;
    height: 15px;
    display: flex;
}

body > footer > div.flash > div {
    flex: 1;
}

body > footer > div.flash > div.box1 {
    background-color: #83591f;
}

body > footer > div.flash > div.box2 {
    background-color: #564e38;
}

body > footer > div.flash > div.box3 {
    background-color: #07373f;
}

body > footer > div.flash > div.box4 {
    background-color: #587369;
}
