h1 {
    text-align: center;
    margin-bottom: 20px;
}
h2 {
    font-size: 21px;
}
body, main {
    display: flex;
    flex-direction: column;
}
main {
    flex: 1;
}
main>div:nth-of-type(1) {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}
main>div>div {
    flex: 1;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
main>div>div:nth-of-type(1) {
    margin: 0 40px;
    min-height: 250px;
}
main>div>div:nth-of-type(2) {
    margin: 0 5px;
    min-width: 300px;
    min-height: 250px;
}
main a {
    color: #000000;
    display: flex;
    align-items: center;
}
svg {
    width: 35px;
    margin-right: 10px;
}
iframe {
    height: 80%;
    width: 90%;
}
@media screen and (max-width: 600px) {
    main>div>div {
        margin-bottom: 0;
    }
    main>div>div:nth-of-type(2) {
        margin: 0;
    }
    h2 {
        font-size: clamp(14px, 4.5vw, 21px);
    }
    svg {
        width: clamp(25px, 5vw, 40px);
    }
}

form {
    max-width: 550px;
    margin: 10px auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
form label {
    flex-basis: 100%;
}
form input, form textarea {
    flex: 1;
    min-width: 220px;
    padding: 10px 15px;
    border: 2px solid var(--color-vert);
    border-radius: 12px;
    background-color: #ffffff;
    font-size: 1rem;
    transition: 200ms;
}
form input {
    height: 50px;
}
form textarea, form button {
    height: 115px;
}
form input:focus, form textarea:focus {
    outline: none;
    border-color: var(--color-rose);
    box-shadow: 0 0 0 4px rgba(234, 185, 174, 0.3);
}
form button {
    padding: 10px 18px;
    border: none;
    border-radius: 12px;
    background-color: var(--color-rose);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 200ms;
    font-family: "Chewy", system-ui;
    font-size: 1.3rem;
    letter-spacing: 1px;
}
form button:hover {
    background-color: var(--color-vert);
    transform: translateY(-2px);
}
form button:active {
    transform: translateY(0);
}
form input::placeholder {
    color: #888;
}
@media screen and (max-width: 775px) {
    form {
        margin: 10px auto 70px auto;
        padding: 0 5%;
    }
}
@media screen and (max-width: 379px) {
    form button {
        flex: 1;
        height: 50px;
    }
}