*{
    box-sizing: border-box;
}

img{
    max-width: 100%;
}

html {
    background-color: #F2E8E2;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: #AA9F3D
}


h1 {
    font-size: 300px;
    font-weight: bolder;
    color: #F5664C
}

p {

    border: 5px solid;
    border-color: #AA9F3D;
    padding: 15px;
    border-radius: 50px;


}

ul {
    list-style-type: none;
    font-size: 200px;
    border: 5px solid;
    padding: 15px;
    border-radius: 50px;
}

a:visited {
    color: rgb(0, 17, 255)
}

.sites {
    width: 100vw;
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 90px;
    

}


.addMore {
    border: none;
    width: 32px;
    height: 32px;
    background-color: #eee;
    transition: all ease-in-out 0.2s;
    cursor: pointer;
}

.addMore:hover {
    border: 1px solid #888;
    background-color: #ddd;
}

.sites a {
    color: #fffce5;
    /* Set link color */
    text-decoration: none;
    /* Remove default underline */
    padding: 10px 20px;
    /* Add padding for spacing */
    border-radius: 20px;
    /* Add rounded corners */
    background-color: #F5664C;
    /* Set background color */
    margin: 5px;
    /* Add margin for spacing between links */
    transition: background-color 0.3s;
    /* Add transition effect */
}

/* Hover effect */
.sites a:hover {
    background-color: #F7A3A0;
    /* Change background color on hover */
    color: #AA9F3D;
    /* Change text color on hover */
}

/* Styling for visited links */
.sites a:visited {
    color: #d1eeff;
    /* Set visited link color */
}

/* Styling for links within the div with class "sites" */
.sites {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Styling for h1 */
h1 {
    font-size: 48px;
    font-weight: bold;
    color: #F5664C;
}

/* Styling for p */
p {
    border: 5px solid #AA9F3D;
    padding: 15px;
    border-radius: 50px;
    font-size: 24px;
    max-width: 80%;
    margin: 20px auto;
}

/* Styling for buttons */
.sites .journal-button {
    color: #fffce1;
    background-color: #F5664C;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
}

.sites .journal-button:hover {
    background-color: #F7A3A0;
}

/* Styling for reflection paragraphs */
.reflection {
    display: none;
    /* Hide reflection paragraphs by default */
}

.reflection.show {
    display: block;
    /* Show reflection paragraph when toggled */
}

button {
    background-color: #AA9F3D;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
}

button:hover {
    background-color: #827A2E;
}

.back-button {
    background-color: #AA9F3D;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: block;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 16px;
    border-radius: 8px;
}

.back-button:hover {
    background-color: #827A2E;
}