
body {
    background-color: #f2e8d6; 
    font-family: 'Baloo 2', cursive;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    color: #3d2b1f;
}

.text-content {
    padding: 1.5rem 2rem;

}

.box {
    width: 100%;
    color: #E07B39;
    background-color: #1a1a1a;
    text-align: center;
    box-sizing: border-box;
}
header {
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    letter-spacing: 1px;
    font-family: 'Fredoka One', cursive;
    text-shadow: 1px 1px 0 #000000;
    letter-spacing: 1px
}
.navbar {
    text-align: center;
    padding: 0.5rem 0;
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    display: inline-block;  /*side by side */
    margin: 0 0.5rem;
}

.nav-link {
    color: #f2e8d6;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background-color: #8e4e23;
    border-radius: 15px;
    transition: background-color 0.3s, transform 0.2s;
}

.nav-link:hover {
    background-color: rgb(92, 31, 3);
    transform: scale(1.05);
}
footer { 
    text-align: center;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
    font-size: 1.2rem;
    letter-spacing: 1px;
}
.fortune-box {
    border: 2px solid black;
    background-color: #59564d48;
    padding: 20px;
    margin: 20px auto;
    width: 50%;
    text-align: center;
    font-size: 1.5rem;
}

input[type="email"], /*[] is for input fields*/
textarea {
    display: block;
    width: 50%;
    max-width: 500px;        /*limits size on large screens*/
    margin: 0.5rem auto;
    padding: 0.5rem;
    font-family: 'Baloo 2', cursive;
    font-size: 1rem;
    border: 2px solid #8e4e23;
    border-radius: 10px;
    box-sizing: border-box;
    background-color: #fdf6e3;
    color: #3d2b1f;
}

input[type="message"], /*[] is for input fields*/
textarea {
    display: block;
    width: 50%;
    max-width: 500px;        /*limits size on large screens*/
    margin: 0.5rem auto;
    padding: 0.5rem;
    font-family: 'Baloo 2', cursive;
    font-size: 1rem;
    border: 2px solid #8e4e23;
    border-radius: 10px;
    box-sizing: border-box;
    background-color: #fdf6e3;
    color: #3d2b1f;
}

button[type="submit"] {  /*[] is for input fields*/
    display: inline-block;
    margin: 0.5rem auto;
    background-color: #8e4e23;
    color: #f2e8d6;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-family: 'Fredoka One', cursive;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button[type="submit"]:hover {
    background-color: #5c1f03;
    transform: scale(1.05);
}
/* .button-group button {
    display: inline-block;
    margin: 0.3rem 0.5rem;
} */
.fortune-area {
    display: flex;
    justify-content: center;
    align-items: center;
    /* wrap is for phone views */
    flex-wrap: wrap;
    margin-bottom: 10px;
    margin-top: 10px;
}
.color-button {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}
.color-buttons {
    display: grid;
    grid-template-columns: repeat(2, 40px);
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.color-button:hover {
    transform: scale(1.1);
}

.green-btn {
    background-color: #134e4a;
}

.yellow-btn {
    background-color: #fff89a;
}

.blue-btn {
    background-color: #001f3f;
}

.orange-btn {
    background-color: #F9A825;
}
.container {
    text-align: center;
    padding: 1rem 2rem;
    font-size: 2.5rem;
    letter-spacing: 1px;
    font-family: 'Fredoka One', cursive;
    text-shadow: 1px 1px 0 #000000;
    letter-spacing: 1px
}

input[type="text"], /*[] is for input fields*/
textarea {
    display: block;
    width: 50%;
    max-width: 500px;        /*limits size on large screens*/
    margin: 0.5rem auto;
    padding: 0.5rem;
    font-family: 'Baloo 2', cursive;
    font-size: 1rem;
    border: 2px solid #8e4e23;
    border-radius: 10px;
    box-sizing: border-box;
    background-color: #fdf6e3;
    color: #3d2b1f;
}
.list {
    background-color: #5b3e2b5f;
    border: 2px solid #000000;
    border-radius: 10px;
    text-align: left
}

