body {
    background-image: url("/img/bg/parts.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

main {
    background-color: #0000009F;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 8rem 2rem 8rem;
    text-align: center;
    color: #FFFFFF;
}

.hero h1 {
    font-size: 5rem;
    margin: 2rem;
}

.hero p {
    font-size: 1.8rem;
    line-height: 2.8rem;
    color: #FFFFFF;
}

.sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.section {
    overflow: hidden;
    width: 18rem;
    padding: 2rem;
    transition: .25s ease;
    color: #FFFFFF;
    border: 2px solid #FFFFFF3F;
    border-radius: 2.5rem;
    background-color: #FFFFFF1F;
    box-shadow: 0 0 5rem #0000003F;
    backdrop-filter: blur(1.5rem);
}

.section:hover {
    transform: translateY(-1rem);
    background: #FFFFFF3F;
}

.section .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 2rem;
    background-color: #FFFFFF3F;
}

.section .logo img {
    max-width: 80%;
    max-height: 12rem;
    object-fit: contain;
}

.content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content p {
    font-size: 1rem;
    color: #DFDFDF;
}

.button {
    margin-top: 3rem;
}

.button a {
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: .25s;
    text-decoration: none;
    color: #3F1F00;
    border-radius: 5rem;
    background: linear-gradient(135deg, #9F7F3F, #7F3F00);
}

.button a:hover {
    transform: scale(1.05);
}

@media only screen and (max-width: 768px) {
    .hero {
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.5rem;
    }
}