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;
}


.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;
}

