@font-face {
    font-family: 'Simpsons';
    src: url("/fonts/Simpsons.otf");
}

body {
    margin: 0;
    text-align: center;
    font-family: "Roboto", sans-serif;
    background: #20191c;
}

.container {
    max-width: 777px;
    margin: 0 auto;
}

h1, h2, h3 {
    font-family: 'Simpsons', "Roboto", sans-serif;
}

.hero {
    background: url("/images/hero-bg.jpg");
    background-size: cover;
    background-position: bottom;
    padding: 50px 100px;
}

.hero-pill {
    border-radius: 5px;
    padding: 5px 10px;
}

.hero-title {
    background: #2f64d6;
    color: #FFF;
}

.hero-desc {
    background: #f8db27;
    font-weight: bold;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: solid 2px #000;
    border-radius: 5px;
    background: #9c5b01;
    color: #FFF;
    padding: 5px 10px;
    width: 100%;
}

button:hover {
    background: #6f450c;
    transition: background 0.75s;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.activities {
    padding: 10px 20px;
    background: #f8db27;
}

.card-container {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    gap: 20px;
}

.card {
    background: #c6b54e;
    padding: 10px 20px;
    border-radius: 5px;
    border: solid 2px #000;
}

.card-img {
    filter: grayscale(1);
    border: solid 4px #000;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.card-img:hover {
    filter: grayscale(0);
    transition: filter 0.75s;
}

.guide {
    background: #ff81c1;
    padding: 50px;
    display: flex;
    justify-content: center;
}

.guide-card {
    background: #cc679a;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: row-reverse;
    border-radius: 5px;
    border: solid 2px #000;
    padding: 5px 10px;
}

.guide-img {
    border-radius: 50%;
    width: 100px;
}