* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: white;
}

html {
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url(img/sincerely-media-K5OLjMlPe4U-unsplash.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    font-weight: bolder;
}

p {
    margin: 10px 0px;
    font-size: 20px;
    
}

button {
    margin-top: 4px;
    cursor: pointer;
    font-weight: bolder;
    font-size: 20px;
    padding: 8px 28px;
    background-color: rgb(206, 156, 31);
    color: rgb(2, 88, 2);
    border: 0;
    width: 180px;
}

.title-head {
    color: goldenrod;
}

.message-el {
    font-style: italic;
}

