body{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(178, 165, 204);
    font-family: 'Lucida Sans';
}

header, a {
    background-color: rgb(255, 143, 161);
    color: rgb(255, 254, 214);
    padding: 20px;
}

header {
    font-size: 50px;
    font-weight: 300;
    border-bottom: thick solid rgb(255, 254, 214);;
}

a {
    text-decoration: none;
    border: thin solid rgb(255, 254, 214);
}

a:hover {
    background-color: rgb(255, 156, 170);
    text-decoration: wavy underline;
}