* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fff; 
}

.logo-container {
    background-color: #DCEAEA;
    padding: 300px; 
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px; 
}

img {
    min-width: 40%;
    max-height: 50vh; 
    width: auto;
    height: auto;
}