html {
    background-color:rgb(110, 88, 83);
}

h1 {
    padding: 2rem;
}

article {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
}

body {
  background-image: url(background-manor.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

main {
    margin-top: 5rem;
    margin-bottom: 7rem;
    display: grid;
    grid-template-rows: 0fr, 0fr;
    row-gap: 4rem;
    text-align: center;
    justify-content: center;
}

main a{
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 5rem;
    text-decoration: none;
    color: rgb(99, 12, 12);
    transition: color 0.2s ease-in-out;
}

main a:hover{
    color: rgb(143, 15, 15);
}

button{
    text-align: center;
    padding: 1.5rem;
    color: black;
    border: 2px solid black;
    border-radius: 10px;
    width: 200%;
    transition: background-color 0.2s ease-in-out;
}

button:hover{
    background-color: #392a48;
}
