body {
  background-image: url('image/bgbgbgbgbg.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
  img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
:root {
    --header-image: url('https://sadhost.neocities.org/images/layouts/wp.jpeg');
    --content: #43256E;
}
@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
}
@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
    font-weight: bold;
}
@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
    font-style: italic;
}
@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
    font-style: italic;
    font-weight: bold;
}
* {
    box-sizing: border-box;
}

#container {
    max-width: 1200px;
    margin: 0 auto;
}

#container a {
    color: #ffd36e;
    font-weight: bold;
}
#header {
    width: 100%;
    background-color: #5e4e8c;
    height: 150px;
    background-image: var(--header-image);
    background-size: 100%;
}
#navbar {
    height: 40px;
    background-color: #FFAC81;
    width: 100%;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}
#navbar li {
    padding-top: 10px;
}
#navbar li a {
    color: #ffd36e;
    font-weight: 800;
    text-decoration: none;
}
#navbar li a:hover {
    color: #a49cba;
    text-decoration: underline;
}
#flex {
    display: grid;
    grid-template-columns: 300px auto 300px;
    gap: 10px;
}
aside {
    background-color: #FFAC81;
    padding: 20px;
    font-size: smaller;
}

main {
    border-radius: 25px;
    background-color: #FFAC81;
    flex: 1;
    padding: 20px;
    order: 2;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#leftSidebar {
    order: 1;
    border-radius: 25px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#rightSidebar {
    order: 3;
    border-radius: 25px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
footer {
    background-color: #FFAC81;
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
h1,
h2,
h3 {
    color: #9c8246;
}
h1 {
    font-size: 25px;
}
strong {
    color: #9c8246;
}
.box {
    background-color: #FEC3A6;
    border: 1px solid #694a04;
    padding: 40px;
}
#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: #13092D;
}

    * {
    box-sizing: border-box;
    }

    .card {
    background-color: #FFAC81;
    padding: 20px;
    margin-top: 20px;
    border-radius: 25px;
    }

    .row:after {
    content: "";
    display: table;
    clear: both;
    }

@media only screen and (max-width: 620px) {
    #flex {
      grid-template-columns: auto;
    }
    order
    main {
        order: 1;
    }
    #leftSidebar {
        order: 3;
    }
    #rightSidebar {
        order: 2;
    }
    #navbar ul {
        flex-wrap: wrap;
    }
}