@import url('https://fonts.googleapis.com/css2?family=Rubik+Doodle+Shadow&display=swap');

body {
    background-color: #ffecb3; /* Light yellow background */
    color: #4d2d00; /* Dark brown text color */
    font-family: 'Rubik Doodle Shadow', system-ui;
    margin: 0;
}
 
header {
    text-align: center;
    padding: 50px;
    background: #8b4513; /* Saddle brown header background */
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 3em; /* Larger font size for the header */
    margin-bottom: 10px;
    font-weight: 700;
}

section {
    margin: 30px 0;
    border: 5px dashed #8b4513; /* Dashed border for sections */
    padding: 20px;
    background-color: #ffd699; /* Light orange background for sections */
    border-radius: 15px; /* Rounded corners for sections */
}

h2 {
    color: #8b4513; /* Saddle brown color for section headers */
    border-bottom: 2px solid #8b4513;
    padding-bottom: 5px;
    font-size: 2.5em; /* Larger font size for section headers */
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

button {
    background: #ffcc66; /* Light yellow button background */
    border-radius: 10px; /* Rounded corners for buttons */
    box-shadow: 5px 5px 10px #8b4513; /* Brown shadow for buttons */
    padding: 20px 45px;
    color: #4d2d00; /* Dark brown text color for buttons */
    display: inline-block;
    font: normal bold 26px/1 "Comic Sans MS", cursive; /* Use a playful font for buttons */
    text-align: center;
    text-shadow: 1px 1px #8b4513; /* Brown text shadow */
}

button:active {
    box-shadow: none;
    top: 5px;
}

button:hover {
    background-color: #ffdb4d; /* Light yellow background on hover */
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #8b4513;
    color: #fff;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

#datext {
    text-align: center;
}
.container-side-by-side { 
	display: flex; 
	flex-direction: row; 
	flex-wrap: wrap; 
	text-align: center;
} 
