* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Arial, 'Roboto', 'Open Sans', sans-serif;
  background-color: #333;
  overflow: hidden;
}

.main {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.content-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.section {
  width: 100%;
  padding: 20px 0;
}

.container {
  margin: 0 auto;
  padding: 0 15px;
}

.scene-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;

  background-color: #111;
  border-radius: 8px;
  perspective: 1000px;
}

.header,
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;

  font-size: 22px;
  text-align: center;
  color: beige;

  background-color: brown;
}

.footer {
  margin-top: auto;
}

.rubik {
  position: relative;
  transform-style: preserve-3d;
  scale: 0.5;

  transition: scale 300ms linear;

  &:hover {
    scale: 1.5;
  }
}

.cube {
  position: absolute;
  transform-style: preserve-3d;
}

.cube-face {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(190, 4, 4, 0.4);
  border: 1px solid #333;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.logo {
  color: white;
  text-decoration: none;
}
