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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  position: relative;
  background-color: #050505;
  background-image: url('img/O Gycanic está sendo feito.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family: Arial, sans-serif;
}

.loader {
  --dvd-color: #00ff66;

  width: 150px;
  height: 40px;
  border-radius: 50%;
  position: fixed;
  left: 0;
  top: 0;
  background: var(--dvd-color);
  will-change: transform;
  pointer-events: none;
}

.loader::before {
  content: 'DVD';
  position: absolute;
  left: 5%;
  bottom: 55%;
  color: var(--dvd-color);
  font-size: 4em;
  font-weight: 900;
  font-style: italic;
}

.loader::after {
  content: 'FWDJC';
  position: absolute;
  top: 30%;
  left: 21%;
  color: #212121;
  font-size: .5em;
  font-weight: 800;
  letter-spacing: 10px;
}