html {
    box-sizing: border-box;
    font-size: 16px;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
}

.container {
    background-color: #1B2E50;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper {
    width: clamp(180px, 30%, 280px);
    height: 30%;
}

.logo {
    /* display: block; */
    width: 100%;
    height: 100%;
}