@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

body {
    margin: 0;
    padding: 0;
    color: #170566;
    background-color: #b2dbf2; 
    font-family: sans-serif;
}

h1 {
    font-family: "Lobster", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#app {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

#mobile {
    display: none;
    @media only screen and (max-width: 1024px) {
        display: block;
    }
}