.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
}

.dtitle{
    font: normal 400 1.25em/140% 'fat_witchregular', sans-serif;
}

.dtitle h1 {
    font-size: 36px;
    color: #000000;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
}

.dtitle p {
    font-size: 16px;
    color: #000000;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
}

.dcontainer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
}
section{
    background-color: #f0f0f0;
    background: #f0f0f0;
        border-radius: 50px;
box-shadow:  8px 8px 21px #b9b9b9,
             -8px -8px 21px #ffffff;
             margin-top: 10px;
             margin-bottom: 10px;
}

section:hover {
      transition: 0.3s;
}

.partner {
    padding: 20px;
}

.partner h2 {
    text-align: center;
    color: #343a40;
}

.partner h2 img {
    width: 100%;
    height: auto;
}

.partner form {
    display: flex;
    flex-direction: column;
}

a.button {
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font:normal 200 1em/1.2em 'Doris', sans-serif;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

a.button:hover {
    opacity: 0.3;
}
@media (max-width: 768px) {
    body {
        flex-direction: column;
        align-items: center;
    }

    .dcontainer {
        flex-direction: column;
        align-items: center;
    }

    section {
        width: 90%;
        margin-bottom: 20px;
    }
}