	@font-face{
		font-family:Open Sans;
		src: url(OpenSans-Bold.ttf);

	}
  body{
    font-family:Open-Sans-Bold;
  }
/* Create three equal columns that floats next to each other */
  .column {
    float: left;
    height: 92px;
    width: 92px;
    background-color: #D8ECC9;
    border-radius: 20px;
    margin: 1.5px 20px 0 0px;

 
  }
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  .portal-button{
    height: 21px;
    width: 80px;
    background-color: #8AC75D;
    border-radius: 10px;
    top: 71px;
    left: 6px;
    position: relative;
    font-size: 11px;
    text-align: center;
    color: black;
    font-family: 'Open Sans';
    padding-top:3px;
  }
   .logo{
    width: 75px;
    height: 70px;
    position: absolute;
    top:4px;
    margin-left:8px;
   }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  *::before, *::after {
      box-sizing: border-box;
  }
  
  .container {
    width: 30px;
    display: block;
    margin: 0;
  }
  
  ul {
    list-style: none;
    
  }
  
  a {
    text-decoration: none;
    
  }
  
  .nav {
    display: grid;
    flex-direction: row;
    justify-content: space-around;
    align-items: left;
    position: absolute;
    font-size: 35px;
    text-align: center;
    top:2px;
    padding: 3px;
    
    
  }
  
  .nav__link {
    display: grid;
    text-transform: uppercase;
    font-size:13px;
    margin: 1px;
    padding-right:10px;
    padding-left:10px;
    padding-top: 5px;
    padding-bottom: 5px;
    align-items: center;
    text-align: center;
  }
/* CSS for the hover effect */
.portal-button {
    position: relative;
}

.portal-button:hover::after {
    content: attr(data-hover-text); /* Use the data-hover-text attribute as content */
    position: absolute;
    margin-top: -62px;
    display: block;
    color: black; /* Text color for the hover text */
    padding-top: 8px; /* Adjust the padding as needed */
    padding-bottom: 8px;
    padding: auto;
    border: 1px solid #8AC75D; /* Optional border for the hover text */
    background-color: white;
    width: 85px;
    text-align: center;
    align-items: center;
    font-family: 'Open Sans';
    
}

.portal-button:hover, .portal-button:focus{
    box-shadow: 0 0.6em 0.6em -0.5em var(--hover);
    transform: translateY(-0.30em);
    -webkit-box-shadow: 2px 10px 5px 0px rgba(0,0,0,0.37);
    -moz-box-shadow: 2px 10px 5px 0px rgba(0,0,0,0.37);
    box-shadow: 2px 10px 5px 0px rgba(0,0,0,0.37);
    font-family: 'Open Sans';
}

.circle-left{
border: 1px solid #8AC75D;
background-color: #8AC75D;
height: 25px;
-moz-border-radius:75px;
-webkit-border-radius: 75px;
width: 25px; 
position: absolute;
top:40px;
left:5px;
}
.circle-right{
  border: 1px solid #8AC75D;
  background-color: #8AC75D;
  height: 25px;
  -moz-border-radius:75px;
  -webkit-border-radius: 75px;
  width: 25px; 
  position: absolute;
  top:40px;
  left:600px;
  }
.arrow{
border: solid black;
border-width:0 3px 3px 0;
display: inline-block;
padding: 3px;
position: absolute;
}
.left{
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}