:root {
  --dark-theme: #1C1B1F;
  --light-theme: #F2F6F6;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
    margin:0;
    padding: 0;
    height: 100%;
    min-height: 100vh;
    width: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed; 
  inset: 0;
  overflow: hidden; 
  user-select: none; 
  touch-action: none;
  background: rgba(0, 106, 101, 100);
}

#loading p {
    color: #fff;
    font-size: x-large;
    font-weight: 500;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}



@keyframes breathe { from { transform: scale(1) } to { transform: scale(0.7)}}
@keyframes zooooom { from { transform: scale(1) } to { transform: scale(200)}}