html, body {
    margin:0;
    padding:0;
}
.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:0 20px;
    background-color: #333333;
}
.logo {
    max-width: 100%;
    height: auto;
    transition: transform 0.4s ease-in-out;
}
.logo:hover {
    transform: scale(1.1);
}