body {
    background: url("/assets/adv.jpg") no-repeat;
    background-size: cover;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 95vh;
    grid-gap: 5rem;
}

section img {
    height: 4rem;
    object-fit: cover;
}

section .content {
    width: 30rem;
    padding: 3rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0.1rem 0.1rem 0.5rem 0.2rem rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 2rem;
}

section .content h1 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #303030;
}

section .content .inp {
    width: 100%;
}

section .content .inp span {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section .content .inp span a {
    font-size: 0.8rem;
    color: rgb(var(--default-color));
    text-decoration: underline;
}

section .content .inp h2 {
    font-size: 0.9rem;
    font-weight: bold;
    color: #303030;
}

section .content .inp input {
    font-size: 0.9rem;
    color: #303030;
    background-color: #f3f3f3;
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    margin-top: 0.2rem;
}

section .content button {
    font-size: 1rem;
    color: white;
    width: 100%;
    padding: 0.5rem;
    border-radius: 0.3rem;
    background-color: rgb(var(--default-color));
    cursor: pointer;
}

section .content button:hover {
    background-color: rgba(var(--default-color), 0.6);
}

section .content h3 {
    font-size: 0.8rem;
    color: #303030;
}

section .content .contact {
    font-size: 0.8rem;
    color: rgb(var(--default-color));
    text-decoration: underline;
}

footer {
    width: 100%;
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30rem;
}

footer h1 {
    font-size: 0.8rem;
    color: white;
}

footer b,
footer a {
    font-weight: bold;
    color: white;
}

@media (max-width: 900px) {
    section {
        grid-gap: 1.5rem;
    }
    section .content {
        width: 20rem;
        padding: 1.5rem;
    }
    footer {
        padding: 0 1rem;
    }
    footer h1:nth-child(1) {
        display: none;
    }
}