@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

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

}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

}

h1 {
    font-family: "Roboto Mono", "san-serif";
    font-size: 80px;
    line-height: 92%;

}

#cloud {
    width: 100%;
    display: flex;
    justify-content: end;

}

@media (max-width: 768px){
    h1 {
        font-size: 54px;
        text-align: center;

    }

    section {
        padding: 50px;

    }
}