@font-face {
    font-family: 'Splatoon1';
    src: url('Splatoon1.otf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Splatoon1';
    src: url('Splatoon1.otf') format('truetype');
}

.container {
    position: relative;
    border-radius: 50%;
    width: 100%;
    height: 100%;
	/*transform: scale(0.5, 0.5);*/
}

#background {
    height: 640px;
}

.data {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  text-shadow: 0 0 20px rgba(0, 0, 0, 1);
}

.data h1 {
    font-size: 10vw; /* 32 */
    text-transform: uppercase;
    color: white;
}

.data p {
    margin: 0;
    font-size: 15vw; /* 120 */
    color: white;
	line-height: 2.2em;
}

#temperature {
    margin: 0;
    font-size: 35vw; /* 120 */
    color: white;
}