* {
    margin: 0;
    padding: 0;
}

body {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    width: 100vw;
}

img {
    width: 30%;
}

@media all and (min-width: 1024px) and (max-width: 1280px) {
    img {
        width: 40%;
    }
}

@media all and (min-width: 768px) and (max-width: 1024px) {
    img {
        width: 50%;
    }
}

@media all and (min-width: 480px) and (max-width: 768px) {
    img {
        width: 70%;
    }
}

@media all and (max-width: 480px) {
    img {
        width: 90%;
    }
}
