@font-face {
    font-family: treb; /*set name of the font */
    src: url(fonts/trebuc.woff);
}

/* Basically the whole page */

.box {
    max-width: 800px;
    margin: auto auto;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 150px minmax(0, 1fr);
    font-family: treb;
    font: trebuchet;
}

/* The Header */

header {
    text-align: center;
    font-size: xx-large;
    grid-row: 1 / 2;
    grid-column: 1 / 3;
    font-weight: bold;
    background-color: #e7c7f8;
    border-radius: 69px;
    border: #ce00ff 3px solid;
    margin-left: 50px;
    margin-right: 50px;
}

/* Links for the whole site */

a:link {
    color: rebeccapurple;
    background-color: transparent;
    text-decoration: underline;
}
a:visited {
    color: rebeccapurple;
    background-color: transparent;
    text-decoration: none;
}
a:hover {
    color: deeppink;
    background-color: transparent;
    text-decoration: underline;
}
a:active {
    color: mediumvioletred;
    background-color: transparent;
    text-decoration: underline;
}

/*Navigation */

nav {
    border: #ce00ff 3px solid;
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    height: max-content;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #e7c7f8;
    border-radius: 10px;
    font-size: 20px;
}

h2 {
    /* header for Navigation and headings in Main */
    font-size: 25px;
    text-align: center;
}

menu {
    /* The options in Navigation */

    padding: 1px;
    line-height: 32px;
}

menu li::marker {
    content: none;
}

/* The Main Section of the Page */

main {
    border: #ce00ff 3px solid;
    border-radius: 10px;
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    background-color: #e7c7f8;
    padding: 10px;
}

p {
    font-size: 20px;
}

.c {
    text-align: center;
    font-size: 20px;
}

img {
    display: block;
    margin: auto;
    width: 50%;
    padding-bottom: 10px;
}
/* 575px is a good with to fit iwthin the main section */

/* The Footer */

footer {
    border: #ce00ff 2px solid;
    border-radius: 10px;
    grid-row: 3 / 4;
    grid-column: 1 / 3;
    background-color: #e7c7f8;
    padding: 10px;
    text-align: center;
    font-size: 20px;
}
