*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    min-height: 100vh;
    background: linear-gradient(240deg, #834d4d, #503d3d);
    position: relative;
    color: white;
    font-family: monospace;
    z-index: -1;
}

.intro-text{
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-20%, -50%);
}
.intro-text h1{
    font-size: 60px;
    margin-bottom: 10px;
}
.intro-text h3{
    font-size: 35px;
}

.chair{
    height: 700px;
    position: absolute;
    top: 70%;
    right: 10%;
    transform: translate(-20%, -70%);
}

.big-rose{
    position: absolute;
    height: 200px;
    top: 10%;
    right: 45%;
}

.small-rose{
    position: absolute;
    height: 100px;
    top: 30%;
    right: 10%;
}

section{
    height: 100vh;
    color: #834d4d;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    font-family: sans-serif;
    background: grey;
}