*{
    box-sizing: border-box;
    margin: 0;
     padding: 0;
}
body{
   background-color: white;
 }
header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.center{
    display: flex;
    gap: 10px;
}

section{

    
    margin: 5px;
  
}

.top img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.left p{
    text-align: center;
}

.right p{
    text-align: center;
}

@media(max-width:600px){
     header{
        margin-top: 30px;
     }
    .center{
        display: flex;
        gap: 10px;
        flex-direction: column;
    }
}
