@charset "utf-8";
*, *::before, *::after{
    box-sizing: border-box;
}

body{
    background-color: lightgray;
}

#wrapper{
    width: 80%;
    margin: 0 auto;
    border: 1px solid black;
}

h1{
    font-size: 3em;
    margin: 10px 0;
    text-align: center;
    text-transform: uppercase;
    color: purple;
    font-weight: bold;
}

.contact-container{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 10px;
}

.contact{
    display: flex;
    align-items:center;
    border: 1px solid #adadad;
    border-radius: 10px;
    gap: 10px;
    flex: 1 1 300px;
    padding: 1%;
    background-color: white;
}

.contact img{
    width: 100%;
    max-width: 120px;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px){
    .contact{
        flex-direction: column;
        text-align: center;
    }
}