* {
    box-sizing: border-box;
}

body{
    margin: 0;
    background-color: rgb(0, 0, 0);
}

.star{
    width: 200px;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.dog{
    display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

