@font-face {
    font-family: Barlow;
    src: url("fonts/Barlow-Regular.ttf") format("truetype");
    font-weight: normal;
}

@font-face {
    font-family: Barlow;
    src: url("fonts/Barlow-SemiBold.ttf") format("truetype");
    font-weight: bold;
}

@font-face {
    font-family: Quicksand;
    src: url("fonts/Quicksand-Bold.ttf") format("truetype");
    font-weight: bold;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Barlow, Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1.5;
    background: #94d9b4;
    color: #1b1b1b;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.text-center {
	text-align: center;
}

h1 {
    font-family: Quicksand, Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: normal;
    margin: 2rem 0 1.5rem;
    color: #333;
}

p {
    margin-bottom: 1.2rem;
}

.indent {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.button {
    display: inline-block;
    padding: 0.75rem 1rem;
    background: #ad1184;
    color: #fff;
    text-decoration: none;
    border-radius: 0.75rem;
    text-align: center;
    max-width: 100%;
}

.button:hover {
    background: #cc149b;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
}

footer {
    background: #1b1b1b;
    color: #eee;
    padding: 2rem 1rem;
    text-align: center;
}

footer ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0;
}

footer a {
    color: #eee;
    text-decoration: none;
}

footer a:hover {
    color: #ad1184;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}