/* 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: url("https://gr3enie.neocities.org/images/light-ribbons.jpg") no-repeat fixed;
  background-size: 200%;
  background-color: floralwhite;
  color: darkslategray;
  font-family: monospace;
}
.bg {
  background-color: rgba(255,250,240,0.8);
  margin: 10px;
}
.content {
  padding: 10px 20px;
}
br {
  line-height: 0px;
}
a{
  font-style: italic;
	animation: 1s infinite ease-in-out; 
	animation-name: blink;
	}
	@keyframes blink{
	  0% {
	    color: navy;
	  }
	  50% {
	    color: rgb(244,196,130);
	  }
	  100%{
	    color: navy;
	  }
  }
h3:hover{
  color: #5f4f3f;
  background-color: #508fff;
  margin: 0px;
  border-width: 10px;
  border-style: groove;
  border-color: #306fff;
  border-bottom-style: ridge;
  border-top-style: ridge;
}
.table {
  color: black;
  border: 10px dashed darkgray;
  border-collapse: collapse;
  background-color: lightgray;
}
.table:hover{
  color: green;
}

.alternative {
  color: yellow !important;
  background-color: yellow !important;
}

.view {
    position: relative;
    overflow: hidden;
    cursor: default;
}
img{
  position: relative;
    display: block;
}
.view .mask{
  position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-attachment: fixed;
  background: url(https://i.ibb.co/C0MjrsJ/05.png);
    background-attachment: fixed;
  display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}


