@charset "UTF-8";
article, aside, footer, header, main, nav, section {
    display: block;
    }

    html, body, h1, h2, h3, ul, li, a, p,
    article, form, input, textarea, aside, footer, header, main, nav, section,
    footer a
    {
        padding: 0;
        margin: 0;
    }

    .banner {
        color:hsl(0, 0%, 95%);
        font-size: 24px;
        margin: auto;
        margin-top: 20px;
        margin-bottom: 20px;
        width: 100% ;        
        text-align: center;
        box-shadow: 0 0 10px 10px hsl(0, 0%, 25%);
    }

    body {
        width: 1024px;
        height: 768px;
        margin-left: auto;
        margin-right: auto;
        background-color: hsl(0, 0%, 20%);
        font-family: Arial, Helvetica, sans-serif;
        font-size: 15px;
    }

    
    h2 {
        color: hsl(0, 0%, 95%);
        text-shadow: 2px 2px hsl(0, 0%, 25%);
    }

    h3 {
        color: hsl(0, 0%, 95%);
        text-shadow: 2px 2px hsl(0, 0%, 25%);
        font-size: 16px;
    }

    nav{
        background-color: hsl(0, 0%, 10%);
        padding: 5px;
        margin-top: 1px;
        border: 2.5px solid;
        border-color:hsl(0, 0%, 22.5%)
    }

    li a {
        color: hsl(0, 0%, 95%);
        text-decoration: none;
    }

    li {
        display: inline;
        margin-left: 10px;
        margin-right: 10px;
        font-size: 20px;
        font-variant: small-caps;
        font-weight: bold;
    }

    section {
        background-color: hsl(279, 15%, 51%);
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 10px;
        box-shadow: 0 0 2.5px 2.5px darkgray;
        border: 2.5px solid darkgray 
    }

    article a{
        color: hsl(0, 0%, 95%);
        font-weight: bold;
        text-decoration: none;
    }

    article {
        background-color: hsl(279, 15%, 61%);
        box-shadow: 0 0 2.5px 2.5px currentColor;
        color:hsl(0, 0%, 85%);
        margin-top: 10px;
        padding: 10px 20px;
    }

    p {
        font-size: 16px;
        text-shadow: 2px 2px hsl(0, 0%, 25%);
      }

    a.hover{
    color:hsl(279, 15%, 51%)
    }

    a:link {text-decoration: none;}

    .dropbox {
    background-color: hsl(279, 15%, 80%);
    color: hsl(0, 0%, 25%);
    cursor: pointer;
    padding: 15px;
    width: 80%;
    font-weight: bold;
    margin: 12px 0px 12px 60px;
    text-align: center;
    transition: 0.4s;
    }

    .active, .dropbox:hover {
    background-color: hsl(279, 35%, 61%);
    }

    .panelbox {
        padding-left: 18px;
        background-color: hsla(0, 0%, 25%, 0);
        max-height: 0;
        overflow: hidden;
        transition: 0.35s ease-out;
    }

    form{
        font-size: 18px;
            
    }

    div label{
        margin: 50px 0px 0px 25px;
        width: 175px;
        padding: 10px;
        display: inline-block;
        font-weight: bold;
        font-size: large;
        text-shadow: 2px 2px hsl(0, 0%, 25%);    
    }

    div input{
        font-style: italic;
        width: 300px;
        margin-top: 50px;
        padding: 10px;
        box-shadow: 2px 2px hsl(0, 0%, 25%);        
    }

    div textarea{       
        width: 500px;
        height: 150px;
        margin: 20px 35px;
        padding: 10px;
        box-shadow: 2px 2px hsl(0, 0%, 25%); 
    }

    #submit {
        background-color: hsl(0, 0%, 30%);
        color: white;
        margin-left: 150px;
        font-weight: bold;
        font-size: 20px;
        cursor: pointer;
        text-shadow: 2px 2px hsl(0, 0%, 25%);
      }

      #submit:hover {
        background-color: hsl(0, 0%, 50%);
      }

    main {
        width: 682px;
        float: left;
    }

    aside a {
        color: hsl(0, 0%, 95%);
        font-weight: bold;
        text-decoration: none;
        text-shadow: 2px 2px hsl(0, 0%, 25%);
    }

    aside {
        background-color: hsl(0, 0%, 40%);
        color:hsl(0, 0%, 95%);
        width: 280px;
        float: right;
        padding: 20px;
        margin: auto;
        margin-top: 10px;
        margin-bottom: 10px;
        text-shadow: 2px 2px hsl(0, 0%, 25%);
        box-shadow: 0 0 2.5px 2.5px darkgray;
        border: 2.5px solid darkgray
        
    }

    footer {
        
        clear: both;
        padding: 5px;
        font-style: italic;
        border: 2.5px solid;
        border-color:hsl(0, 0%, 22.5%);
        background-color: hsl(0, 0%, 10%);
        color: hsl(0, 0%, 85%)
    
    }