/*
NOTES:
    bg: ##f4dbc7
   red: #F02554
  text: #413E45 
*/
:root {
    --bg: #f4dbc7;
    --red: #e84c63;
    --text: #7a0c21;
}

body {
  font-size: 16px;
	background-color: var(--bg);
	font-family: Inconsolata;
	font-size: 18px;
	color: var(--text);
	
}

a {
  text-decoration-line: underline;
  text-decoration-style: wavy;
  color: var(--red);
}

}
/*************************** ^^^^ GENERAL SPECIFIC  ^^^^ **************************/





/*******************************  STYLE SPECIFIC  ***************************/
.whole {
  
}

.banner {
  height: 500px;
  background-image: url("https://file.garden/Zdi8CZzmo3pLm4cH/btbtbtran.website/banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.desc {
  margin-top: 16em;
  margin-left: 2em;
}

.button {
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
  padding: 0.8em;
  margin-right: 1em;
  margin-bottom: 0.5em;
  border: solid 3px;
  border-radius: 0.8em;
  background-color: var(--bg);
  color: var(--text);
  transition: 0.1s;
}
.button:hover {
  border: solid 3px;
  transform: translate(-5px, -5px);
  box-shadow: 5px 5px var(--text);
}

.socials a {
  margin: 0.2em 2em 2em 0em;
  padding: 0.3em;
}
.socials a:hover {
  border: solid 1px;
  border-radius: 5px;
  padding: 0.2em;
}



/***********************  ANIMATION  ****************************/
@keyframes rotating {
  from {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    
  }
  to {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes scaleLoop {
  0% {
    transform: scale(1) rotate(-20deg);
    -moz-transform: scale(1) rotate(-20deg);
  }
  50% {
    transform: scale(1.1) rotate(-20deg);
    -moz-transform: scale(1.1) rotate(-20deg);
  }
  100% {
    transform: scale(1) rotate(-20deg);
    -moz-transform: scale(1) rotate(-20deg);
  }
}
