@import url('https://fonts.googleapis.com/css2?family=Inclusive+Sans:ital,wght@0,300..700;1,300..700&display=swap');

* {
    margin: 0;
    font-family: 'Inclusive Sans', sans-serif;
}

body{
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1 {
    font-size: 2em;
    margin-top: 20px;
}

img{    
    width: 25%;
}

/* Media query for mobile version */
@media (max-width: 600px) {
    img {
        width: 95%;
    }
    
    h1 {
        font-size: 1.5em;
    }
}