/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: radial-gradient(circle, #3db4ec 0%, #0e8ed5 60%, #b3e3f9 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  color: #fff;
}

.logo {
  height: auto;
  margin-bottom: 20px;
}

h1 {
  font-size: 1.8rem;
  font-weight: 400;
}
