* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-align: center;
  }
 
body {
  margin: 0;
  background-color: #89cff0;
  font-family: Arial, Verdana, sans-serif;
  color: #ffffff;
  }
 
.container {
  display: flex;
  flex-direction: column;
  width: 80%;
  gap: 0;
  margin-top: -20px;
  margin: auto;
  }
 
.headerwrapper {
  height: 500px;
  display: flex;
  flex-direction: row;
  position: relative;
  top: 20px;
  }
 
.header {
  flex-basis: 100%;
  background-image: url('https://cutecafe.art/wp-content/uploads/2023/03/Gura01.gif');
  background-position: left;
  background-repeat: no-repeat;
  display: flex;
  }
 
.header h1 {
  background-color: #6488ea;
  border: 5px solid #ffffff;
  border-radius: 99px;
  align-self: center;
  margin: 0 auto;
  color: #ffffff;
  font-size: 90px;
  font-weight: bold;
  padding: 25px;
  }
 
.boxwrapper {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding-left: 16px;
  padding-bottom: 16px;
  position: relative;
  z-index: 1;
  }
 
.sidebars {
  min-width: 100px;
  flex-basis: 15%;
  margin-top: 40px;
  }
 
.sideheaders {
  background-color: #6488ea;
  border: 2px solid #ffffff;
  border-radius: 15px;
  font-weight: bold;
  color: #ffffff;
  font-size: 16px;
  padding: 5px;
  }
 
.middleheaders {
  background-color: #0047ab;
  border: 5px solid #ffffff;
  font-weight: bold;
  color: #ffffff;
  font-size: 18px;
  border-radius: 15px;
  margin-bottom: 5px;
  }
 
.sidebox {
  padding: 8px 3px 8px 3px;
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 2px;
  }
 
.sidebars ul {
  padding: 5px;
  }
   
.sidebars li {
  list-style-type: none;
  margin-bottom: 6px;
  }
 
.sidebars a {
  color: #0000ff;
  }
 
.sidebars a:visited {
  color: #0000ff;
  }
 
.sidebars a:hover {
  text-shadow: 0px 0px 5px #F1ECFF;
  font-style: italic;
  }
 
.sidebars a:active {
  font-style: italic;
  text-shadow: 0px 0px 5px #F1ECFF;
  }
 
.main {
  flex-basis: 70%;
  min-width: 300px;
  padding: 20px;
  background-color: #6488ea;
  border: 5px solid #ffffff;
  border-radius: 15px;
  font-size: 14px;
  margin-top: 40px;
  }
 
.section {
  margin-bottom: 15px;
  }
 
#credit a {
  color: #0000ff;
  }
 
a {
  color: #0000ff;
  text-decoration: none;
  border-bottom: 1px solid white;
  }
 
a:visited {
  color: #0000ff;
  }
 
a:hover {
  font-style: italic;
  }
 
a:active {
  font-style: italic;
  }
   
::-webkit-scrollbar {
  width: 8px; 
  }

::-webkit-scrollbar-track {
  background-color: transparent;
  }
 
::-webkit-scrollbar-thumb {
  background-color: #6488ea;
  }
 
#credit {
  font-size: 12px;
  position: fixed;
  bottom: 0;
  right: 0;
  }
 
@media(max-width:685px) {
  .headerwrapper {
    height: 268px;
    position: relative;
    top: 0px;
    }
  .header {
    background-size: 100%;
    background-position: top left;
    }
  .header h1 {
    font-size: 40px;
    align-self: center;
    padding-left: 16px;
    }
  .container {
    width: 100%;
    margin-top: 0;
    }
  .boxwrapper {
    display: flex;
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
    }
  .boxes {
    min-width: 100%;
    }
  .sidebox {
    text-align: center;
    }
  .sidebars {
    margin-top: 0;
    }
  .sidebars li {
    display: inline;
    border: none;
    }
  }
 
@media(max-width:820px) {
  .header h1 {
    padding-left: 24px;
    }
  }