body, html {
  height: 100%;
  margin: 0;
  box-sizing: border-box;
}

.bg {
  /* The image used */
  /* background-image: url("https://external-preview.redd.it/LCfU2ol2bO2fBw--DC-YeREFRSeYzR4TmqKJQKs8eHs.jpg?auto=webp&s=a388e37d50e6c069103ea417d15c9195ac7f4c50"); */
  background-color: #F7F7F5;

  /* Full height */
  height: 100%; 

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.root {
  display: flex;
  flex-direction: row;
  height: 100%;
}
.info-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
}

.logo > div {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.img-logo {
  margin-bottom: 21px;
}

.text-color {
  color: black;
}

.env-page {
  flex: 1 1 auto;
}

.env-list {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.env-ele {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.env-img {
  margin-bottom: 50px;
  width: auto;
  height: 100px;
}

.title {
  text-align: center;
}

.wrapper{
  top: 50%;
  left: 50%;
  transform: translate(5%, 0%);
  margin-bottom: 25px;
}

.link_wrapper{
  position: relative;
}

a{
  display: block;
  width: 250px;
  height: 50px;
  line-height: 50px;
  font-weight: bold;
  text-decoration: none;
  background: #F7F7F5;
  text-align: center;
  color: black;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #333;
  transition: all .35s;
}

.icon{
  width: 50px;
  height: 50px;
  border: 3px solid transparent;
  position: absolute;
  transform: rotate(45deg);
  right: 0;
  top: 0;
  z-index: -1;
  transition: all .35s;
}

.icon svg{
  width: 30px;
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  transform: rotate(-45deg);
  fill: #2ecc71;
  transition: all .35s;
}

.a-red:hover{
  width: 200px;
  border: 3px solid red;
  background: transparent;
  color: red;
}

.a-red:hover + .icon{
  border: 3px solid red;
  right: -25%;
}

.red {
  fill: red;
}

.a-orange:hover{
  width: 200px;
  border: 3px solid orange;
  background: transparent;
  color: orange;
}

.a-orange:hover + .icon{
  border: 3px solid orange;
  right: -25%;
}

.orange{
  fill: orange;
}

.a-green:hover{
  width: 200px;
  border: 3px solid #2ecc71;
  background: transparent;
  color: #2ecc71;
}

.a-green:hover + .icon{
  border: 3px solid #2ecc71;
  right: -25%;
}

.green{
  fill: #2ecc71;
}
