:root{
    --black: #0e0e0e;
    --btn-accent: rgb(214, 48, 48);
    --btn-accent-hover: #e44048;
    --btn-accent-active: rgb(255, 255, 255);
    --light-gray:  rgb(238, 238, 238);
    --gray: #a7a7a7;
    --dark-gray: #636363;
    --gray-trans: #a7a7a798;
    --confetti: white;
    --link-not-visited: rgb(0, 102, 255);
    --link-color: rgb(0, 59, 185);
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Pacifico&display=swap');


html, body
{
    width: 100%;
    height: 100%;
	scroll-behavior: smooth;
    margin: 0px;
    padding: 0px;
    font-family: 'Montserrat', sans-serif;
}

.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

h1{
    font-family: 'Pacifico', cursive;
}

.bullet::after{
    content: "\00a0\2022\00a0";
}

.link{
    color: var(--link-color);
}

.button{
    z-index: 2000;
    display: flex;
    flex-direction: row;
    align-items: center;

    max-width: 500px;
    max-height: 25px;
    min-width: 120px;
    padding: 12px;

    border-radius: 8px;
    color: rgb(24, 24, 24);
    font-weight: bold;

    border: 5px solid var(--black);

    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;

    cursor: pointer;

    background-color: white;
    transition: all .2s ease;

}

.button:hover{
    background-color: var(--btn-accent-hover);
    transition: all .2s ease;
}

.button:active{
    box-shadow: 0px 0px 0px #0e0e0e8a;
    /* transform: scale(.99); */
    border: 2px solid var(--black);
    transition: transform .2s ease;
}

.button > p{
    display: flex;  
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.link{
    text-decoration: none;
    border-bottom: 2px dashed;
    transition: ease-in all .2s;
}

.link:hover {
    box-shadow: inset 0 -20px 0 0 var(--btn-accent-hover);
    color: black;
    transition: ease-out all .3s;
}

a{
    text-decoration: none;
}

a:link {
    color: unset;
  }
  
  a:visited {
    color: unset;
  }
  
  a:hover {
  }
  
  a:active {
  }

.flex-center-column{
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type=text]{
    padding: 22px 20px;
    border-radius: 8px;
    border-style: solid;
    border-color: rgb(186, 186, 255);
    text-align: center;
    font-size: larger;
}

.invalid-input{
    border: 3px solid red !important;
}


.green{
    color: rgb(35, 141, 35);
}

.red{
    color: rgb(201, 37, 37);
}

.gray{
    color: var(--gray);
}