@font-face {
    font-family: 'Proxima Nova Bold';
    src: url('proximanova_bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

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

body {
    background-color: #252525;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

img {
    width: 7rem;
}

.logo-wrapper {
    font-family: Proxima Nova Bold;
    font-size: 2rem;
    letter-spacing: 0.03em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #00DB42;
}