@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body{
    margin: 0;
    background-color: rgb(0, 128, 255);
    font-family: 'Inter', sans-serif;


}

h1 {
    text-align: center;
    padding: 3em;
    color: white;
}

@media only screen and (max-width: 768px) {
    h1 {
        font-size: 1em;
        padding: 3em;
    }
}

