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

body {
    background: #000505;
    animation: fadeIn 2s cubic-bezier(1, 0, 0, 1) ease-in-out;
}

.wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.wrap img {
    width: 20vw;
    height: auto;
    min-width: 200px;
    max-width: 80vw;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}