body {
background-color: white;
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
overflow: auto; /* Allows scrolling if the image is larger than the viewport */
font-family: "Pacifico", cursive;
font-weight: 400;
font-style: normal;
}
img {
display: block; /* Removes any default inline spacing */
}
.pacifico-regular {
font-family: "Pacifico", cursive;
font-weight: 400;
font-style: normal;
}
header, footer {
position: fixed;
left: 0;
width: 100%;
height: 50px; /* Height of the header/footer */
background-color: #333; /* Header/Footer color */
color: white;
text-align: center;
line-height: 20px; /* Center text vertically */
}
header {
top: 0;
padding-left:50px;
text-align:left;
}
footer {
bottom: 0;
padding-bottom:10px;
}

/* Simple modal styling */
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.4); /* Dim the background */
}

.modal-content {
background-color: #fff;
margin: 15% auto; /* Centering the modal */
padding: 20px;
border-radius: 15px; /* Rounded corners */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
width: 50%; /* Adaptive width */
min-width: 300px; /* Minimum width */
border: solid 1px #ffc0cb; /* Light pink border */
text-align: center;
}


/* The Close Button */
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}

.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}

/* The Close Button */
.closeTerms {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    }
    
    .closeTerms:hover,
    .closeTerms:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
    }

#options{
display: flex;
flex-direction: column;
}

button {
    padding: 10px 20px;
    margin: 10px;
    border: none;
    background-color: #ffc0cb; /* Light pink background */
    border-radius: 20px; /* Fully rounded edges */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    font-family: "Pacifico", cursive;
font-weight: 400;
font-style: normal;
}

button:hover {
    background-color: #ffadb9; /* Slightly darker pink on hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15); /* Increased shadow on hover */
}

#startButton {
    background-color: grey; /* Grey color for differentiation */
    color: white; /* White text for contrast */
}

#startButton:hover {
    background-color: #b0b0b0; /* Darker grey on hover */
}

#termsButton {
    background-color: rgb(255, 255, 255); /* Grey color for differentiation */
    color: rgb(106, 106, 106); /* White text for contrast */
}

#termsButton:hover {
    background-color: #b0b0b0; /* Darker grey on hover */
}
