* {
    box-sizing: border-box;
}

html { 
    min-height: 100%;
    padding: 0;
    margin: 0; 
    font-family: "Avenir Next", "Avenir", sans-serif; 
}

body {
    background: #ffffff;
    color: #000;
    padding: 0;
    margin: 0;
    width: 100%;
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}

/*
 CSS for the main interaction
*/
.tabset > input[type="radio"] {
    position: absolute;
    left: -200vw;
}

.tabset .tab-panel {
    display: none;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
    display: block;
}

/*
 Styling
*/

.tabset > label {
    position: relative;
    display: inline-block;
    padding: 0.9rem 0.9rem 1.5rem;
    border: 0.06rem solid transparent;
    border-bottom: 0;
    cursor: pointer;
    font-weight: 600;
}

.tabset > label::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    bottom: 10px;
    width: 22px;
    height: 4px;
    background: #8d8d8d;
}

input:focus-visible + label {
    outline: 2px solid #000;
    border-radius: 3px;
}

.tabset > label:hover,
.tabset > input:focus + label,
.tabset > input:checked + label {
    color: #000;
}

.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
    background: #8aa399;
}

.tabset > input:checked + label {
    border-color: #949695;
    border-bottom: 0.06rem solid #000;
    margin-bottom: -0.06rem;
}

.tab-panel {
    padding: 10px 0;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

.tabset {
    max-width: 65em;
}

#content {
    padding: 1rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

a,
a:visited,
a:active {
  color: #000;
  text-decoration: underline;
}

#logo {
  border: none;
  width: 10rem;
  height: auto;
}

a:hover {
  font-weight: bold;
}

.container {
  width: 100%;
  min-height: 100vh;
}

.icon {
    display: inline;
    width: 2rem;
    height: auto;
}

nav {
  position: absolute;
  right: 1.1rem;
  top: 2rem;
}

.no-decor, h1 a {
  text-decoration: none;
}

header {
    color: #000000;
    height: auto;
    padding: 0.75rem;
    width: 100%;
    background: linear-gradient(-45deg, #000000, #DCDCDC, #FFFFFF, #D3D3D3);
    background-size: 400% 400%;
    background-image: url(/assets/webp/clouds.webp);
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

footer {
    padding: 0.5rem;
    margin: 0;
    bottom: 0;
    height: auto;
    width: 100%;
    background-color: #78ade2;
    color: #000;
    text-align: center;
    position: fixed;
}

@media (max-width: 48rem) {
    
    #content {
	width: 100%;
    }
}

.cologo {
  display: block;
  padding: 0;
  width: 18.75rem;
  height: 6.25rem;
}

