:root {
    --my-pink: #fa7082;
}

* {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: rgb(255, 255, 174);
    font-weight: bold;
}

html {
    background-color: var(--my-pink);
}

body {
    margin: 0;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

h1 {
    text-align: center;
    max-width: 25ch;
}
button {
    font-weight: bold;
    color: #fa7082;
    background-color: rgb(255, 255, 174);
}
input {
    background-color:rgb(255, 255, 174);
    color: #fa7082;
    font-weight: lighter;
}
input::placeholder {
    color: #fa7082;

}