 .contact {
    background: black;
    color: black; /* Set text color to black */
    padding: 30px 5%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.n1, .n2, .n3 {
    background: black; /* Set background color for all components */
    color: aliceblue;
}

.n1 {
    width: 100%;
    margin-bottom: 20px;
}

.n2, .n3 {
    flex: 1;
    height: 130px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.imglogo {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
}

.detail {
    padding: 0 20px;
}
.con{
   color: black;
}

@media only screen and (min-width: 768px) {
    .contact {
        padding: 30px 10%;
    }

    .n1, .n2, .n3 {
        width: 30%;
    }
}

