* {
    box-sizing: border-box;
}
body, html {
    height: 100vh;
    margin: 0;
    font-size: 1rem;
    font-family: MS UI Gothic, "MS-UI-Gothic", 'system-ui';
    background-image: url('../images/5.jpg');
    background-size:cover;  
}

header {
    margin: auto;
    text-align: center;

/* background: linear-gradient(to bottom,
    #c8ffc5 0%,
    #1fbf24 55%,
    #009a05 55%,
    #457a28 100%
); */
background-image: linear-gradient(to bottom, #ffffffc7 0%, #c7c7c7c7 50%, #CCCCCCc7 100%);
box-shadow: 0px 2px 2px #bebebe inset, 0px -2px 2px #bebebe inset, 0px 2px 2px #888888;
width: 50vw;
border-radius: 5px;
 -webkit-box-reflect: below 1px linear-gradient(to bottom, transparent, rgb(255 255 255 / 50%));
 color:#888888;
}

main {
    margin:10px auto;
    width:60vw;
    background-color: rgb(236, 236, 236);
    opacity: 0.9;
    padding:10px;
    border: 1px solid rgb(119, 119, 119);
    border-radius: 10px;
    box-shadow: 0px 2px 2px #bebebe inset, 0px -2px 2px #bebebe inset, 0px 2px 2px #888888;
}
.uniquifer {
    text-align: center;
    margin: 10px;
    font-size: 1.5rem;
}
@media only screen and (max-width: 800px) {
    main {
        width:60vw;
    }
    header {
        width:80vw;
    }

}