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

body {
    background-color: #711517;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.logo-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

.logo-container img {
    max-width: 90vw;
    max-height: 80vh;
    width: 350px;
    height: auto;
    display: block;
}
