* {box-sizing: border-box;}

::selection {
    background-color: #3e4b86;
    color: #fff6f9;
}

body {
    background: white url(windows_7_104.jpg) fixed;
    font-family: 'Times New Roman', serif, Arial;
    font-size: 1em;
    color: #680f08;
    margin: 15px;
}

.container {
    text-align: center;
    background-color: #f1b5b4;
    border: 2px solid #680f08;
    border-radius: 25px;
    padding: 15px;
    margin: auto;
    width: 1100px;
    display: grid;
    gap: 5px;
    grid-template:
    "header"
    "main"
    "footer" /
    1fr;
}

.element {
    padding: 15px;
    margin: 5px;
    background-color: #fceeeb;
    border-radius: 25px;
}

header {
    grid-area: header;
}

main {
    grid-area: main;
}

footer {
    grid-area: footer;
}

hr, a {
   color: #922006;
}

h1 {
    text-align: center;
}

button {
    border: #680f08 solid 2px;
    border-radius: 15px;
    background-color: #fceeeb;
    color: #680f08;
    width: 150px;
    height: 35px;
    cursor: pointer;
}

img {
    border: #680f08 solid 2px;
    border-radius: 5px;
}
