/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */


body {
    background-image: url(/images/checker.png);
    background-size: cover;
}


h1 {
    color: white;
    background-color: black;
}

h2 {
    padding: 5px 20px;
    margin-bottom: 2px;
    width: fit-content;
    border-top: 4px solid #d8dcdc;
    border-right: 4px solid #666;
    border-bottom: 4px solid #333;
    border-left: 4px solid #868888;
    border-radius: 0;
    background-image: -webkit-linear-gradient(135deg, #ccc 0%, #868888 20%, #d8dcdc 34%, white 53%, #ccc 100%);
    background-image: linear-gradient(-45deg, #ccc 0%, #868888 20%, #d8dcdc 34%, white 53%, #ccc 100%);
  }

.header-link {
    width: 100%;
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-between;
}

.header-link a, .header-link a:visited {
    color: white;
    text-decoration: none;
    padding: 0 0.5em;
}

.year_link {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 0 2em;
    margin:0.5em 0;
    box-sizing: border-box;
    z-index: 0;
}


.year_link>a {
    position: relative;
    color: #fff;
    padding: 0 0.5em;
    background: #000000;
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
}

.year_link>a:first-child::before,
.year_link>a:first-child::after {
    position: absolute;
    left: -15px;
    width: 40%;
    height: 50%;
    background: #000000;
    content: '';
    z-index: -1;
}

.year_link>a:first-child::before {
    top: 0;
    transform: skew(-45deg);
}


.year_link>a:first-child::after {
    top: 50%;
    transform: skew(45deg);
}

.year_link>a:nth-child(2)::before,
.year_link>a:nth-child(2)::after {
    position: absolute;
    right: -15px;
    width: 40%;
    height: 50%;
    background: #000000;
    content: '';
    z-index: -1;
}

.year_link>a:nth-child(2)::before {
    top: 0;
    transform: skew(45deg);
}


.year_link>a:nth-child(2)::after {
    top: 50%;
    transform: skew(-45deg);
}



.list table{
    width: 80%;
}

.list td {
    background-color:black;
    color: white;
    text-align: center;
    height: 50px;
    font-weight: bold;
    font-size: 20px;
}

.list a{
    background-color: white;
    border-radius: 20px;
    padding: 0 20%;
    text-decoration: none;
}

.list a:visited{
    color: black;
}

.list select{
    width: 60%;
    font-size: 1rem;
    display: inline-block;
    background-color: transparent;
    position: relative;
    cursor: pointer;
    color: gray;
    border-radius: 0.5em;
}

.list input{
    width: 30%;
    background-color: white;
    border-radius: 1em;
    height: 30px;
    font-size: 20px;
}

.chartinput input {
    width: 40px;
    border: 2px solid  rgba(176,196,222,0.6);
    border-radius: 0.6em;
    outline: none;
    box-sizing: border-box;
    transition: 0.3s;
    background-color: rgba(176,196,222,0.2);
}

.chartinput input:focus {
  border-color: dodgerBlue;
  box-shadow: 0 0 8px 0 dodgerBlue;
}

.chartinput button {
    border-color: rgba(127,255,212,0.5);
    background-color: rgba(127,255,212,0.2);
    border-radius: 0.6em;
}

.chartinput button:hover {
  border-color: dodgerBlue;
  box-shadow: 0 0 8px 0 dodgerBlue;
}

.chartinput {
    width: 80%;
    display: flex;
    justify-content: space-between;
}


.chart {
    width: 80%;
}


.input-list td {
    background-color: black;
    color: white;
    text-align: center;
}

.input-list td>input, .input-list td>select {
    width: 90%;
}

.input-list td>a, .input-list a:visited {
    color: white;
    text-decoration: none;
}

.pr {
    display: flex;
}

div.image_area {
    width: 70%;
}

div.image  {
    width: 100%;
    background-color: #fff;
    border: 5px solid #aaaaaa;
    box-shadow: 10px 5px 5px #000;
}

.article {
    display: flex;
}

.article>div {
    margin: 1em 1em;
}

div.article_content{
    background-color: rgba(176,196,222,0.4);
    border-radius: 10px;
    padding: 0.3em 0.5em;
}

.image img{
    width: 100%;
    height: auto;
}

div.menu{
    background-color: #000;
}

.menu>a{
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}
