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

body{
    width: 100%;
    height:100vh;
    overflow: hidden;
    background-color: #000;
}

main{
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: flex;
    flex-direction: column;

    section{
        width: 100%;
        background-color: transparent;
    }

    .asteroid-area {
        flex: 6;
    }

    .danger-zone {
        flex: 1;
        border-top: 2px dashed #9292927a;
        display: flex;
        justify-content: center;
        
        .rocket {
            padding: 1rem 0;
            img {
                width: 8rem;
                aspect-ratio: 1/1;
            }
        }
    }
}

.asteroid{
    display: flex;
    align-items: center;

    span {
        font-size: 2rem;
        letter-spacing: 5px;
    }

    img {
        width: 6rem;
        aspect-ratio: 1/1;
    }
}