body {
    background-color: #fafafa;
}

.home-hero {
    background-image: url("/static/img/home_hero.png");
    background-position: center bottom;
    background-size: cover;
    width: 100%;
    height: calc(100lvh - 64px);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 100px 0 50px 0;
}

.logo-img {
    width: 80px;
}

.logo-text {
    font-size: 80px;
    font-weight: 700;
}

.hero-desc {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
}

.buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 100px;
}

.button {
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: black;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    border-radius: 4px;
    padding: 10px 20px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.15);
    transition: all 0.25s;
}

.button:hover {
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.4);
}

.mission {
    max-width: 1200px;
    margin: 50px auto;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 4px;
    padding: 25px 30px;
    box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.2);
}

.mission>h2 {
    margin-top: 0;
}

.box>a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
}

.box-list {
    display: grid;
    grid-gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-bottom: 30px;
}

.box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    background-color: white;
    padding: 20px 30px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease-in-out;
}

.box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 8px 1px rgba(0, 0, 0, 0.1);
}

.box>img {
    width: 120px;
    height: 60px;
    object-fit: contain;
}

.box>.title {
    font-size: 20px;
    font-weight: 700;
}

@media only screen and (max-width: 600px) {
    .logo-img {
        width: 50px;
    }

    .logo-text {
        font-size: 50px;
    }

    .hero-desc {
        font-size: 20px;
    }

    .button {
        font-size: 16px;
    }

    .buttons {
        gap: 20px;
    }
}