body {
    background-color: #1d1d1d;
    color: white;
    font-family: inter;
}

* {
    font-family: inter;
}

@font-face {
    font-family: inter;
    src: url(/fonts/inter.ttf);
}

h1 {
    font-weight: 650;
    color: white;
    font-size: 40px;
}

button {
    height: 75px;
    font-family: inter;
    border-radius: 14px;
    border-width: 2px;
    border-style: solid;
    border-color: white;
    background-color: transparent;
    color: white;
    width: 165px;
    font-size: 20px;
    transition: 0.2s;
}

button:hover {
    scale: 110%;
    cursor: pointer;
}

p {
    font-family: inter;
    font-size: 16px;
    font-weight: 500;
}

.switcher {
    font-size: 15px;
    font-family: inter;
    height: 50px;
    border-radius: 14px;
    border-width: 2px;
    border-style: solid;
    border-color: white;
    background-color: transparent;
    color: white;
    width: 100px;
    transition: 0.2s;
    margin-left: 15px;
}

.button-big {
    height: 75px;
    font-family: inter;
    border-radius: 14px;
    border-width: 2px;
    border-style: solid;
    border-color: white;
    background-color: transparent;
    color: white;
    width: 165px;
    font-size: 20px;
}

.button-big:hover {
    background-color: white;
    color: black;
}

.madebycobblesteve {
    background-color: #1F51FF;
    color: white;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    height: 20px;
    vertical-align: -5px;
    padding: 10px;
    width: calc(98.5%);
    margin-left: -10px;
    text-underline-offset: 3px;
    position: absolute;
    bottom: 0;
}

.madebycobblesteve a {
    color: white;
}

#toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    margin-top: -30px;
    padding: 16px;
    border-radius: 4px;
    background-color: white;
    color: black;
    text-align: center;
    border-radius: 15px;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1;
    margin-top: -10px;
    font-weight: 500;
  }
  
  #toast #closebtn {
    color: #fff;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
  }
  
  #toast #closebtn:hover {
    color: #000;
  }
  
  #toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 5.5s;
    animation: fadein 0.5s, fadeout 0.5s 5.5s;
  }
  
  @-webkit-keyframes fadein {
    from {top: 0; opacity: 0;} 
    to {top: 30px; opacity: 1;}
  }
  
  @keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 30px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
    from {top: 30px; opacity: 1;} 
    to {top: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {top: 30px; opacity: 1;} 
    to {top: 0; opacity: 0;}
}

#toast img {
    height: 35px;
    color: black;
    margin-right: 2px;
    vertical-align: -12px;
    margin-left: -5px;
}