@font-face {
  font-family: "Wondermail";
  src: url("/assets/fonts/wondermail.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  font-family: "Wondermail", Arial, Helvetica, sans-serif;
  font-size: 4vh;
}

body {
    color: black;
    background: linear-gradient(#6296a9ab, #fdc4355e);
    background-repeat: no-repeat;
    min-height: 100vh;
    overflow-x: hidden;
    
}

.navigation-bar{
    position: fixed;
    display: flex;
    justify-self: left;
}

.nav-button{
    width: 15vh;
    height: 8vh;
    align-content: center;
    background: linear-gradient(#6296a9ab, #fdc4355e);
    font-family: "Wondermail", Arial, Helvetica, sans-serif;
    font-size: 6vh;
    color: #44341c;
}


.mon-container{
    display: flex;
    justify-content: center;
}

.mon-box{
    width: 100px;
    height: auto;
    
    margin-left: 10px;

    transition: transform .05s ease-in;
}
.mon-box:hover {
    transform: scale(1.1);
}

.mon-stats{
    width: 100px;
    
    margin-left: 10px;
    
    font-size: 30px;
    
    justify-content: center;
    display: flex;
}


#form {
  display: flex;
  flex-direction: column;   
  gap: 10px;              
}

#form label,
#form fieldset {
  position: relative;
  width: 100%;
  right: -32%;
}
