:root {
    /* colors */

    --whiteblue: #c8d0e9;
    --lightblue:#99a6cf;
    --blue: #626ea9;
    --darkblue: #343978;
    --blackblue: #0c0a36;

    --whitebrown: #f4d8c4;
    --lightbrown: #cda085;
    --brown: #815c42;
    --darkbrown: #442d1c;

    --pink: #f481a7;
    --darkpink: #a02a52;
    --yellow: #fac674;
    --green: #96aa62;
    --darkgreen: #5e7e43;
}

main {
    background-color: transparent;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    border: none;
    padding: 0;
}

section {
    width: 48%;
    margin: 5px auto;
}

.title {
    width: 100%;
}

#tamanotchi {
    background-color: #f9fcff;
    background-image: linear-gradient(to bottom, #59c1ec, rgba(255, 255, 255, 0) 100%, #f9fcff);
    color: #103566;
    border-color: #59c1ec;
}

#tamanotchi .content {
    background-image: linear-gradient(to bottom, #f3fbff, rgba(255, 255, 255, 0) 70%);
    margin: 10px;
    padding: 10px;
    border-radius: 20px;
}

#tamanotchi h2, #tamanotchi h3 {
    color: #488ebd;
    background-color: transparent;
    border: none;
}

#tfo {
    background-image: url("/images/tfo-bg-tile.jpg");
    border: 2px solid #48b6ca;
    -webkit-box-shadow: 0 0 10px #48b6ca;
    box-shadow: 0 0 10px #48b6ca;
}

#tfo h2 {
    background-image: url("/images/tfo-main-tile.jpg");
    border: 2px solid #48b6ca;
    -webkit-box-shadow: 0 0 10px #48b6ca;
    box-shadow: 0 0 10px #48b6ca;
}
#tfo h2 a {
    color: #000;
    text-decoration: none;
}
#tfo h2 a:hover {
    color: #000;
    text-decoration: 3px underline;
}

#flower-game {
    background-image: url("/images/flower-game-bg.jpg");
    color: var(--darkgreen);
    border-color: var(--darkgreen);
}

#flower-game .content {
    background-color: #fdf6ee;
    border-radius: 10px;
    padding: 10px;
}

#flower-game h2 {
    background-color: transparent;
    border: none;
}
#flower-game a {
    color: var(--darkgreen);
    text-decoration: 2px underline;
}
#flower-game a:hover {
    color: var(--darkgreen);
    text-decoration: none;
}

.shelf a{
    background-image: url("/images/shelf.png");
    height: 60px;
    display: inline-block;
    margin-top: 25px;
}

#pixpet {
    background-image: url("/images/pixpet-bg-tile.gif");
    background-size: 12px;
    border-color: #267399;
}

#pixpet h2 {
    background: linear-gradient(to bottom, rgba(38, 115, 153, 1) 0%, rgba(32, 96, 128, 1) 100%);
    border-radius: 5px;
    border: none;
}
#pixpet a {
    text-decoration: none;
}

#cs {
    color: #000;
    background-color: #4ba139;
    width: 100%;
}

#cs .content {
    background-color: #e0f6b2;
    border-radius: 20px;
    padding: 10px;
}

#cs h2 {
    background-color: #99c57c;
    border: none;
    border-radius: 5px;
}
#cs a {
    color: #000;
    text-decoration: none;
}
#cs a:hover {
    color: #000;
    text-decoration: 3px underline;
}

#other {
    width: 100%;
}

@media only screen and (max-width: 800px) {
    section{
      width: 100%;
  }
}