body {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0;

    min-height: 600px;
}


.buttons {
    position: absolute;
    display: flex;
    justify-content: center;
    transform: translateX(50%);
    right: 50%;
    top: 1px;


}

.buttons button {
    padding: 0.75rem 1.5rem;
    border: none;
    font-size: 1.2rem;
    background-color: rgb(53, 52, 52)
}

#Tips {
    order: 1;
    background-color: rgb(53, 52, 52);
    color: rgb(255, 255, 255);
}

#Home {

    order: 2;
    background-color: rgb(53, 52, 52);
   color: rgb(70, 68, 68);
}

#Random {
    order: 3;
    background-color: rgb(53, 52, 52);
    color: rgb(70, 68, 68);
}


.btn:hover {
    color: rgb(255, 255, 255) !important;
}

#headbar {
    position: relative;

    width: 100%;
    height: 50px;
    background-color: rgb(53, 52, 52);


}

#headbarborder {
    position: relative;
    background-color: rgb(48, 48, 48);
    width: 100%;
    height: 1.5px;

}
#tos {
   position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%) translateY(-7vh);
    width: fit-content;
    padding: 10rem 10rem;
    background-color: white;
}
#tosOverlay{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.4);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

#Accept {
    background-color: rgb(39, 39, 154);
    border:none;
    padding: 0.5rem 1rem;
}
#Decline {
    background-color: rgb(74, 74, 74);
    border:none;
    padding: 0.5rem 1rem;

}

#tos{
  background:white;
  padding:40px;
  border-radius:10px;
  text-align:center;
}