
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');

html, body {
    margin: 0;
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    background: #FFF;
    color: #000;
}

.logo {
    width: 380px;
    height: 230px;
    background: url("logo.png") center no-repeat;
    background-size: contain;
    transform: translateY(-9vh);
}