/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #6f9ceb;
  background-image: url("images/stars3.png");
  background-position:center;
  color: black;
  font-family: Verdana;
  display: flex;
  flex-wrap:wrap;
  align-items: center;
  justify-content: space-around;
  
}
.side-image{
  width:20%;
  }
#otter{
  border-radius:10px;
  }
  
#butterfly{
  width: 40%;
  right: 10px;
  position: absolute;
  rotate: -20deg;
  }

#index-rect{
  width: 50%;
  height: 582px;
}

#salamander{
  position: absolute; 
  left: 320px;
  top: -70px;
  bottom:0;
  right: 0;
  z-index: 1;
  }
  
#enter{
  z-index:3;
  }

.construct{
  display: inline-block;
  position: relative;
  background-image: url("images/rectangle.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding:10px;
  margin:5px;
}

.construct-content{
  color:white;
  position:absolute;
  left: 13%;
  top:13%;
  width: 78%;
  height:70%;
}

#neocity{
  position: fixed;
  bottom:10px;
  right:10px
}

#site-button{
  padding:10px;
  }

#ekster{
  position:absolute;
  background-image: url("images/Ekster_kristal1.png");
  background-repeat: no-repeat;
  top:200px;
  right:0px;
  height:395px;
  width:320px;
  transition: top ease 0.5s;
}

#ekster:hover {
  right: -10px;
}

#back{
  background-color: #404b55;
  border: 5px solid white;
  border-radius: 25px;
  padding:10px;
  position: fixed;
  bottom:10px;
  left:10px;
  transition: 0.5s;
}

#back:hover{
  background-color: #606b75;
  
}

#flex-box{
  position:absolute;
  top:100px;
  left:90px;
  
}
.box{
  width: 420px;
  height: 280px;
  margin: 1px;
}

p, b, h4 .box{
    margin: 1px;
}

a .box{
    margin: 10px;
    padding-top: 20px;
}


h4{
  margin-top: 8px;
  margin-bottom: 1px;
}

a{
  color:white;
  text-decoration: none;
  padding: 2px;
}

#box4-content{
    background-image: url("images/blobs.png");
    background-repeat: no-repeat;
    background-position: center; 
    background-size: 105%;
}

button{
  margin:10px;
  padding:5px;
  background-color:#004e98;
  border-radius: 10px;
  z-index:9999;
}

#arrowbox{
  width:180px;
  display: grid;
  grid-template-columns: auto auto auto;
}

.arrow{
  height:50px;
  justify-self: center;
  align-self: center;
  position: relative;
  top: 0;
  transition: top ease 0.5s;
  }
  
.arrow:hover {
  top: -10px;
}

#shrines{
  margin-top: -30px;
}

#shrine-header{
  text-align: center;
  background-color: #004e98;
  border-radius: 25px;
  width:100%;
  height:150px;
  margin-bottom:30px;
}

#shrinebox{
  width:60%;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: space-around;
  background-image:url("images/59.gif");
  background-size:100%;
  border-radius: 25px;
  border:2px solid white;
}

.shrine{
  
  align-self: center;
  position: relative;
  transition: top ease 0.5s;
  color:black;
  width:12vmax;
  height:16vmax;
  padding-top:10px;
  padding-left:20px;
  padding-right:20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  }
  
.shrine:hover {
  top: -10px;
}

#skeleton{
  width:15%
  }
  
#bussinesscat{
  width:15%;
  }
  
.shrine-avatar{
  /*max-height:100%;*/
  width:100%;
  height:100%;
  object-fit: contain;
  align-self:center;
  justify-self: center;
  }