body {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    background-color: bisque;
}

h1 {
    margin: 0px;
    width: 100%;
    height: 80svh;
    background-image: url(images/spaghetti-a.jpg);
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 10rem;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

hr {
    margin: 0px 0px 4px 0px;
    width: 100%;
    height: 20px;
    background-color: rgb(233, 200, 14);
    border: none;
}

h2 {
    width: 100%;
    text-align: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 3rem;
    color: rgb(134, 116, 12);
    text-decoration: underline;
}

p {
    width: 80%;
    text-align: center;
    margin: auto;
    padding: 0px 10%;
    font-size: 1.5rem;
}

img {
    width: 100%;
    height: 80svh;
    object-fit: cover;
    margin: 0px;
    padding: 0px;
}

div {
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

div img {
    width: 30svh;
    height: 25svh;
    object-fit: cover;
    border-radius: 30%;
    border: 5px solid rgb(233, 200, 14);
}

button {
    height: 50px;
    font-size: 1.5rem;
    padding: 0px 20px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: white;
    background-color: rgb(134, 116, 12);
    border: 3px solid rgb(233, 200, 14);;
    border-radius: 10px;
    cursor: pointer;
}