@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --primary-color: #F9490E;
  --secondary-color: #f4f4f4;
  --text-color: #333;
  --font-stack: Helvetica, Arial, sans-serif;
}

/* ---------- */
/* Resets */
/* ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

main {
    flex: 1;
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

h1, h2, h3, h4, h5, h6, p {
  overflow-wrap: break-word;
}

/* ---------- */
/* Components */
/* ---------- */
.logo {
    height: 80px;
    width: auto;
    transition: opacity 0.2s ease;
}
header .logo {
    height: 50px;
}
.logo:hover {
    opacity: 0.85;
}

button {
    padding: 10px 20px;
    background-color: var(--primary-color);
    border-radius: 10px;
    border: 2px solid #000000;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ---------- */
/* Sections */
/* ---------- */
body {
    font-family: 'Open Sans', sans-serif;
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    color: var(--font-color);
    background-color: var(--secondary-color);
}

section {
    /* margin: 25px 0; */
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 30px;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 30px;

    border-top: 1px solid var(--primary-color);
}
footer .sitelist {
    display: flex;
    justify-content: center;
    list-style: none;

    margin: 10px 0;
}
footer a {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
footer .sitelist li + li::before {
    content: '+';
    margin: 0 5px;
    opacity: 0.7;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 80px 20px;
    gap: 30px;
    color: white;
    background-color: var(--primary-color);
}
.hero h2 {
    font-size: 3em;
    font-weight: 700;
    letter-spacing: -2px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 80px 20px;
    gap: 30px;
}

@media (max-width: 600px) {
    .logo {
        height: 70px;
        width: auto;
        transition: opacity 0.2s ease;
    }
    header .logo {
        height: 45px;
    }
    .hero h2 {
        font-size: 2em;
        font-weight: 700;
        letter-spacing: -2px;
    }

    footer .sitelist {
        display: flex;
        flex-direction: column;
        align-items: center;
        list-style: none;
        border: 1px solid var(--color);
    }
    
    footer .sitelist li + li::before {
        content: none;
    }
}