@charset "UTF-8";

body{
    margin: 0;
    padding: 0;
}
header{
    background-image: url(images/flowers-1139083_1280.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    /* filter: opacity(0.2); */
    width: 100vw;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    color: #fff;
}
main{
    color: rgb(100, 100, 100);
    padding: 2rem;
}
main h1{
    border-bottom: solid 5px rgb(212, 92, 192);
    text-align: center;
    margin-bottom: 2rem;
}
main h2{
    border-bottom: dotted 1px rgb(212, 92, 192);
}
footer{
    background: url(images/flowers-1139083_1280.jpg) rgb(250, 220, 245);
    /* filter: opacity(0.2); */
    width: 100vw;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    color: #fff;
    font-weight: bolder;
}
footer small{
    font-size: 1rem;
}