* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:focus {
    outline: none;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Rubik', sans-serif;
    font-size: 6em;
    height: -webkit-fill-available;
    color: white;
    background-color: #98BDFF;

}

body {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: 100%;
    flex-direction: column;
    align-items: center;
    opacity: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.show {
    transition-property: opacity;
    transition-duration: 0.5s;
    opacity: 1;
}