html {
    box-sizing: border-box;
  }
  *, *:before, *:after {
    box-sizing: inherit;
  }


:root {
    --artBlue:#0099e0;
    --accentLight: #dddddd;
    --artPeach:	rgb(252, 218, 190);
    --lightBlue: #E6F5FC;
    --darkBlue: #006B9D;
    --artRed: rgb(255, 41, 41);
    --artOrange: rgb(255, 196, 0);
    --artGreen: rgb(42, 218, 42);
    --artDarkOrange: orangered;
    ;
}

a {
    text-decoration: none;
}

body {
    margin: 0;
    font-family: 'Assistant', sans-serif;
    line-height: 1.2;
    font-size:  .8rem;
}

h1, h2, h3, h4, h5, h6 {
  
  font-family: 'Questrial', sans-serif;
  padding-top: 1rem;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.4rem;
}
h3 {
  font-size: 1.3rem;
}

li {
  list-style-type: none;
}


.margin-top-gap {
  margin-top: 10px;
}

.text-green {
  color: var(--artGreen)
}

.text-blue {
  color: var(--artBlue)
}

.text-orange {
  color: var(--artDarkOrange)
}

.text-red {
  color: var(--artRed);
}


/* NOTICEBOARD */


.notice-wrapper {

    padding: 0;
    margin: 10px;
    min-height: 350px;
    border: 10px solid var(--artBlue);

}

.notice-wrapper-title {
    text-align: center;
    padding: 5px;
    font-family: 'Atma', cursive;
    font-weight: bold;
    color:whitesmoke;
    font-size: 1.5rem;
    background: var(--artBlue);
    margin:0 0 5px;
    }

.notice-buttons {
    display: grid;
    justify-items: center;
    align-items: center;
    grid-template-columns: repeat(2,auto);

}

.notice-content {
    padding: 5px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.notice-item {
    padding: 7px;
    border-radius: 3rem;
    font-family: 'Atma', cursive;
    font-weight: bold;
    list-style: none;
    background: var(--artBlue);
    text-align: center;
    cursor: pointer;
    color: black;
    box-shadow:  0 2px 2px rgba(0,0,0,0.3);
    transition: all ease-in-out 100ms;
   
    }

    @media screen and (max-width: 850px) {
      .notice-item  {
        font-size: .7rem;
    }
  }

    @keyframes chunk {
      0% {
        margin-top: 0%;
      }

      50% {
        margin-top: 4%;
      }
    
      to {
        margin-top: 0%;
      }
    }

    
  .active-notice-item {
     
    background: var(--darkBlue);
    color: white;

    }

    /* little animation when the noticeboard button is pushed  */
  
  .notice-item:active {
    height: 30px;
    animation-name: chunk;
  }
  
  .notice-item:hover {
    background: var(--darkBlue);
  }


    /* inspirational quote styling  */
.inspirational-quote {
  display: grid;
  grid-template-columns: 1fr 8fr 1fr;
  justify-content: center;
  align-items: end;
  font-family: atma;
  grid-column: span 2;

  text-align: center;
  background-color: var(--lightBlue);
  border-top: 15px solid var(--artPeach);
}



.hide {
  display:none;
}


  


