@import "/public/css/global.css";

* {
    box-sizing: border-box;
}

html, body {
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background: #5f724e;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    background: white;
    overflow: hidden;
}

.logo img {
    width: 100%;
}