* {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    background-color: rgb(252, 248, 162);
    padding: 20px;
}

.pageTitle{
    color: rgba(220, 8, 8, 0.829);
} 

.blueSection {
    background-color: rgb(54, 149, 227);
    padding: 15px; 
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items:center;
}

.form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

#taylor {
    width: 300px;
    border-radius: 20px;
    transition: transform 0.3s ease-in-out;
}

#taylor:hover {
    transform: scale(1.1);
}

.askArea {
    background-color: azure;
    border-radius: 15px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.askArea:hover {
    border: 3px solid red;
}

.askButton {
    border-radius: 10px;
    background-color: yellow;
}

.mother {
    color: red;
}

#replyContainer {
    width: 300px;
    padding: 20px;
}