*{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    margin: 10px;
    padding: 0;
    box-sizing: border-box;
    color: rgb(178, 57, 57);
}

body{
    font-size: 20px;
    background-color: rgb(229, 204, 204);
}

header{
    background-color: rgb(226, 111, 111);
    padding: 10px; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    font-size: 40px;
}

p{
    color: rgb(178, 57, 57);
}

h2{
    color: rgb(178, 57, 57);
}

a{
    background-color:rgb(129, 156, 130);
    scale: 1.0;
    padding: 5px;
}

nav a{
    text-decoration: none;
    color:rgb(178, 57, 57);
    font-size: 27px;
}

nav a:hover{
    color: rgb(40, 83, 83);
    font-size: 30px;
    transition: all 0.3s ease-in-out;
}