body {
    padding:0;
    margin: 0;

    background: #000000;

    display: flex;
    flex-direction: column; 

    justify-content: center;


    }


.layout {
    width: auto;
    justify-content: center;
    flex-direction: column;
}

textarea {
    font:10px calibri; 
    letter-spacing: 5px;}



/*--------- Banner --------- Banner --------- Banner --------- Banner */
.banner {
  
    height: 300px;
    width: 100%;
    border-bottom: 2px white solid;
position:relative;
    
    background-position: center;

    background-size: cover;
    margin: top;
    justify-content: column;
}

.banner img {
    display: fixed;
    height: 300px;
    width: 100%;
    background-position: center;
    object-fit: cover;
    position: absolute;
    
}




/* --------- Main box --------- Main box --------- Main box --------- Main box*/
.container {
    width:100%;
    max-width:800px;
    height:800px;
    background:black;
   border: white double 5px;
   
    display:flex;
    flex-direction:column;}


.box {
    width: 200px;
    height: 100px;
    max-height: 400px;
    background: purple;
    border-radius: 10px;
    border: 5px double yellow;
    box-shadow: 0 30px 30px blue;
    
    }

