/*
Theme Name: Baby Guess Theme
Author: Bethany Fowler
Description: Template for Baby Bean sweepstake
Version: 0.0.1
Tags: bootstrap
*/

.caveat-brush-regular {
  font-family: "Caveat Brush", cursive;
  font-weight: 400;
  font-style: normal;
}

h1, h2, h3 {
    font-family: "Caveat Brush", cursive;
    text-align: center;
}
body {
    margin: 2rem !important;
}
.logo-header {
    width: 15rem;
}
.loading-background {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    display: none;
    z-index: 2;
}
.loading-container {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6C4D5F;
    position: fixed;
}

.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
  margin: auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.background-fade {
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
    position: fixed;
    height: 100%;
    z-index: 1;
    display: none;
}

/* form {
    width: 20rem;
} */
#send_guess_btn {
    width: 100%;
    border-radius: 0;
    border-color: #d9882f;
    color: #d9882f;
}
#send_guess_btn:hover {
    background-color: #d9882f;
    color: white;
}
.center-content {
    text-align: center;
    margin: auto;
}
.m2 {
    margin-top: 2rem;
}
footer {
    font-size: .6rem;
    float: right;
}