* {box-sizing: border-box;}

body {
    background-image: linear-gradient(orange,lightgoldenrodyellow);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

.main {
    border-radius: 12px;
    border: outset 2px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.571);
    font-family: arial black;
    background-color: rgba(255, 255, 255, 1);
    min-height: 675px;
    margin-left: 100px;
    margin-right: 250px;
    margin-top: 25px;
    margin-bottom: 50px;
}

/* Style the header */
header {
    font-size: 125%;
    text-align: right;
    padding-right: 20px;
    font-family: segoe print;
}

.tabs { 
    /*background-image: linear-gradient(to left, white, rgb(250, 228, 210),rgb(255, 154, 60), rgb(255, 154, 60), white,white);*/
    background-image: linear-gradient(to right, rgb(255, 230, 197), gold, orange);
    color: rgb(49, 49, 49);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 112%;
    font-weight:bold;
    text-align: left;
}
.tabs span {
    background-image: linear-gradient(rgb(233, 233, 233),rgb(191, 191, 191));
    border: outset 2px grey;
    box-shadow:  2px 2px 5px rgba(0, 0, 0, 0.4);         
    padding: 3px;
    padding-left: 6px;
    padding-right: 6px;
    border-radius: 12px;
    width:150px;
}

/* Navigation tabs */
.tabs span:hover {
    background-image: linear-gradient(rgb(191, 191, 191),rgb(233, 233, 233));
    border: inset 2px grey;
    cursor: pointer;
    color: black;
    box-shadow:  0px 0px 0px rgba(0, 0, 0, 0);
}

.tabs a         {color: rgb(49, 49, 49);}
.tabs a:hover   {color: black;}

/* Main stuff */
article {
    float: left;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    padding-left: 1%;
    padding-right:5%;
    width: 75%;
}

article p {
    font-size: 110%;
    text-align:justify;
}

.kalli{
    background-color:rgb(255, 245, 102);
    border: dashed rgb(230, 163, 62) 2px;
    cursor: not-allowed;
    font-family: courier;
    float:left;
    font-size:110%;
    margin-left: 25px;
    margin-right:15%;
    padding-left: 5px;
    padding-right: 5px;
    text-align: justify;
    width: 60%;
}

/* Website Updates */
.updates {
    float: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 75%;
    padding-left: 1%;
    padding-right:5%;
    text-align: justify;
    width: 75%;
}

.updates button:hover {cursor: pointer;}

/* Create two columns/boxes that floats next to each other */
aside {
    background: #ccc;
    background-image: linear-gradient(to right, lightgrey,rgb(232, 232, 232), white, white, rgb(232, 232, 232), lightgrey);
    border: outset 2px grey;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    box-shadow:  2px 2px 5px rgba(0, 0, 0, 0.4);  
    float: right;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-top: 10px;
    padding: 20px;
    text-align: center;
    width: 25%;
}

/* Style the list inside the menu */
aside ul {
    line-height: 40px;
    list-style-type: none;
    padding: 0;
    font-size: 115%;
    font-family: Arial, Helvetica, sans-serif;
}

aside a         {color:black;}
aside a:hover   {color:blue;}

aside p {line-height: 10px; color:black}

aside span      {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 150%;
    font-weight: bold;
    text-shadow: 2px 0px 1px gold, -2px 0px 1px gold,0px 2px 1px gold,0px -2px 1px gold;
}


/* Clear floats after the columns */
section::after {
    content: "";
    display: table;
    clear: both;
}

/* Style the footer */
footer {
    font-size: 75%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: justify;
}
        

/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 983px) {
  aside, article, .main, .kalli, .updates {
    width: 100%;
    height: auto;
    margin: 0px;
  }
  img {
    max-width: 100%;
  }
}