/*
=======================================
Global
=======================================
*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: black;
  background-image: url("pictures/twinkle-stars.gif");
  color: blue;
  display: grid;
  grid-template-rows: .8fr .2fr;
  grid-template-areas: "main"
                       "footer";
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

/*
=======================================
Screen Reader Only
=======================================
*/

.sr-only {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  top: auto;
  overflow: hidden;
}

/*
=======================================
Planet Section
=======================================
*/

main {
  grid-area: main;
  background: url("pictures/feminism.gif");
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  display: grid;
  grid-template-columns: repeat(7, 100px);
  grid-template-rows: repeat(7, 100px);
  justify-content: center;
  align-content: center;
}

.container {
  position: relative;
}

.planet {
  position: absolute;
}

.one-box {
/*  grid-area: 2/4;*/
  grid-area: 3/5;
}

.one {
  left: 19px;
  bottom: 90px;
}

.two-box {
  /*grid-area: 2/5;*/
  grid-area: 3/6;
}

.two {
  right: 5px;
  bottom: 30px;
  transform: rotate(60deg);
}

.three-box {
  grid-area: 4/6;
  /*grid-area: 3/5;*/  
}

.three {
    left: 40px;
    top: 20px;
}

.four-box {
  grid-area: 5/6;
  /*grid-area: 4/5;*/  
}

.four {
  top: 15px;
  right: 10px;
  transform: rotate(180deg);
}

.five-box {
  grid-area: 6/5;
  /*grid-area: 5/4;*/  
}

.five {
  left: 0px;
  bottom: 10px;
  max-width: 250%;
}

.six-box {
  grid-area: 6/4;
/*  grid-area: 5/3;  */
}

.six {
  top: 19px;
  right: 10px;
  transform: rotate(295deg);
}

.seven-box {
  /*grid-area: 7/2;*/
  grid-area: 6/3;
}

.seven {
  right: 35px;
  bottom: 40px;
  transform: rotate(90deg);
}

.eight-box {
  grid-area: 5/2;
  /*grid-area: 4/1;*/
}

.eight {
  bottom: 10px;
  right: 25px;
}


.nine-box {
  grid-area: 5/2;  
/*  grid-area: 4/1;*/
}

.nine {
  right: 30px;
  bottom: 60px;
}

.ten-box {
/*  grid-area: 2/2;*/
  grid-area: 3/3;
  width: 150px;
}

.ten {
  right: 75px;
  top: -50px;
  transform: rotate(10deg);
}

.eleven-box {
  /*grid-area: 2/2;*/
  grid-area: 3/3;  
}

.eleven {
  left: 100px;
  top: 20px;
}


.twelve-box {
/*  grid-area: 2/3;*/
  grid-area: 3/4;  
}

.twelve {
  left: 15px;
  bottom: 60px;
  transform: rotate(50deg);
}

a {
  color: black;
}


/*
=======================================
Footer
=======================================
*/

footer {
  grid-area: footer;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}

ul {
  display: flex;
  justify-content: center;
  padding: 0;
  list-style: none;
}

ul a {
  font-size: smaller;
  color: #c4aead;
  text-decoration: none;
  margin: 5px;
}