
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Tittilium Web";
  background-image: url("./mats/siteback.png");
  background-size: cover;
  background-attachment: fixed;
}

.mainbox {
  width: 80%;
  height: 100%;
  padding: 5%;
  margin: 10%;
  background-color: #46c252;
  display: flex;
  flex-wrap:nowrap;
  flex-direction: column;
  flex: 1; 
  justify-content: center;
  align-items: center;
  position: relative;

}

.textbox {
  margin: auto;
  background-color: #46c252;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  font-size: 2em;
  justify-content: center;
  
}
.header {
  padding: 10px;
  text-align: center;
  overflow: auto;
}

.title {
  text-align: center;
  font-size: 10em;
  font-family: "Passion One", sans-serif;
}

.smalltext {
  text-decoration: none;
  color: black;
  padding: 5px;
  margin: 5%;
  font-size: 2em;
}

.hidetext {
  color: transparent;
  font-family: "Coral Pixels", serif;
  margin: 5%;
  font-size: 1.5em;
}

.hidetext:hover {
  text-decoration: black underline;
  color: black;
  
}

.smallertext {
  font-size: 0.9em;
  color: black;
  text-align: center;
}

.addtext {
  font-size: 0.5em;
  text-decoration: none;
  position: absolute;
  bottom: 2%;
  right: 2%;

}
.line {
  margin: auto;
  width: 100%;
}

@media (max-width: 768px) {
  
  .mainbox {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    position:absolute;
  }
  .header {
    font-size: 1vh;
    
  }

  .hidetext {
    position:absolute;
    top: 25%;
  }
  .smallertext {
    color: transparent;
  }

  
   
  
}