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

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    background: #FFFFFF;
    color: #FFF;
    transition: all 0.5s ease-in-out;
}

.logotype {
    margin-top: 5vh;
    text-align: center;
}

.logotype img {
    max-width: 100vw;
    object-fit: contain;
}