* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    height: 100%;
}

li {
    list-style: none;
}

.header {
    background-color: rgb(255, 212, 219);
    border-bottom: 2px solid pink;
    padding: 20px 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo > img {
    width: 100px;
}
.header__content {
}
.greeting > img {
    width: 500px;
}

.greeting {
    display: flex;
    margin-top: 30px;
    justify-content: space-between;
    align-items: center;
}

.greeting-image {
    max-width: 500px;
}
.greeting-text {
}
.wishes, .greeting {
    margin-top: 30px;
    box-shadow: 8px 10px 20px gray;
    border-radius: 8px;
    padding: 20px;
}

.footer {
    margin-top: 30px;
    background-color: rgb(255, 212, 219);
    border-top: 2px solid pink;
    padding: 20px 0;
    text-align: center;
}