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

body{
    background-color: #000;
    width: 100%;
    height: 100vh;
    font-family: sans-serif;
}

.hero{
    width: 100%;
    height: 100%;
    color: lightgray;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.hero img{
    height: 50%;
    object-fit: contain;
    object-position: center;
    padding: 20px;
}

