a:link {
    color: #00ffff;
    text-decoration: none;
}

a:visited {
    color: #00ffff;
    text-decoration: none;
}

a:hover {
    color: #ff00dd;
    text-decoration: none;
}

a:active {
    text-decoration: none;
    color: red;
}

html {
    width: 98%;
    text-align: center;
    align-content: center;
    font-size: 1em;
}

h3 {
    color: white;
}

span {
    margin: auto;
    font-size: 1rem;
}

.main {
    background-color: #707070;
    color: #eefaff;
}

.header {
    position: sticky;
    width: 100%;
    flex: 1 1 auto;
    margin-top: 0px;
    top: 0px;
    z-index: 1001;
}

.header_content {
    display: flex;
    flex-flow: row wrap;
    align-content: space-between;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header_item {
    float: left;
    margin: auto;
    color: #aeaeae;
}

.main_title {
    color: #fff;
    width: 205px;
    border-radius: 25px;
    border: 2px solid #0072ff;
    background-color: #25252585;
    text-align: center;
    font-size: 1.5em;
    padding-left: 5px;
    padding-right: 5px;
    margin-left: 25px;
}

.main_title:hover {
    border-color: #00ffff;
}

#main_title:visited {
    color: #eefaff;
}

.home_icon {
    width: 48px;
    height: 48px;
}

#click {
    display: none;
}

.menu_icon {
    width: 40px;
    height: 40px;
    z-index: 1500;
}

.menu_title {
    width: 40px;
    color: white;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.main_menu_checkbox {
    position: relative;
    top: 20px;
}

.main_menu_button {
    display: block;
    position: relative;
    top: 20px;
    min-width: 40px;
    min-height: 40px;
    padding: 8px 6px 0px 4px;
    background-color: rgba(64,64,64,0.5);
    border: 2px solid #00ffff;
    border-radius: 20px;
    transition-duration: 0.4s;
    text-decoration: none;
    cursor: pointer;
    z-index: 1400;
    overflow: hidden;
}

.main_menu_button:hover {
    background-color: rgba(0,0,0,0.7);
    border: 3.5px solid #00ffff;
    border-radius: 20px;
    scale: 1.1;
}

.main_menu_button:after {
    content: "";
    display: block;
    position: absolute;
    padding-top: 120%;
    padding-left: 160%;
    margin-left: -20%;
    margin-top: -120%;
    background: #0072ff;
    opacity: 0;
    transition: all 0.4s;
}

.main_menu_button:active:after {
  padding: 0;
  margin: 0;
  opacity: 1;
  transition: 0s
}

.main_menu_button:hover {
    cursor: pointer;
}

.filler {
    height: 100%;
    min-height: 300px;
    max-height: 2000px;
}

.info_icon {
    height: 18px;
    width: 18px;
}

.info_menu {
    position: relative;
    top: -20px;
    left: -10px;
    right: 10px;
    margin: 0px;
}

.out_container {
    margin: 5px;
    border-radius: 22px;
    padding: 1px 15px 15px 15px;
    margin-bottom: 50px;
    margin-left: 15px;
    border: 2px solid transparent;
    background: linear-gradient(180deg ,#585858, #202020, #585858) padding-box,
              linear-gradient(0deg, #00ffff, #0072ff, #00ffff) border-box;
}

.in_container {
    border-radius: 15px;
    display: block;
    padding: 10px;
    text-align: center;
    align-content: center;
    justify-items: center;
    align-items: center;
    border: 2px solid transparent;
    background: linear-gradient(0deg ,#909090, #888888, #909090) padding-box,
              linear-gradient(0deg, #00ffff, #0072ff, #00ffff) border-box;
}

.container_title {
    width: 100%;
    border: 2px solid #0072ff;
    border-radius: 25px;
    background-color: #808080;
    text-align: center;
    font-size: 1.2em;
}

.info_container {
    text-align: end;
    margin-top: 10px;
}

.out_footer {
    justify-self: end;
    margin: 80px 15px -100px 15px;
    border-radius: 22px;
    padding: 1px 15px 15px 15px;
    text-align: center;
    border: 1px solid transparent;
    background: linear-gradient(90deg ,#686868, #404040, #686868) padding-box,
              linear-gradient(90deg, #00ffff, #0072ff, #00ffff) border-box;
}

.in_footer {
    background-color: #202020;
    border-radius: 15px;
}

.home_logo {
    width: 32px;
    height: 32px;
}

@media only screen and (min-width: 800px) {

    .main {
        padding: 25px;
    }

    .main_title {
        width: 380px;
        font-size: 2.5em;
        margin-left: auto;
    }

    .home_icon {
        width: 64px;
        height: 64px;
    }

    #main_menu {
        margin-right: auto;
    }

    .menu_icon {
        width: 50px;
        height: 50px;
    }

    .main_menu_button {
        position: relative;
        top: 20px;
        margin-right: 0px;
    }

    .menu_title {
        margin-left: 7px;
    }

    .container_title {
        font-size: 1.6em;
    }

    .info_icon {
        height: 20px;
        width: 20px;
    }
}

@media only screen and (min-width: 1300px) {

    .main_title {
        width: 480px;
        font-size: 2.5em;
    }
}
