
* {
    margin: 0; padding: 0;
}


body {
    background-color: #234;
    color: #faf5f5;
    font-family: verdana, arial, sans-serif;
    border: 4px solid #222;
    
    margin: 4px;
    padding: 12px;
}

header {
    border: 2px solid hotpink;
    padding: 12px;
}

header > h1 {
    text-align: center;
    font-weight: normal;
    text-transform: uppercase;
    color: yellowgreen;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid hotpink;
}

header span {
    display: block;
    border: 0px;
    color: #FF4;
    
}

.subtitle {
    text-align: center;
    /* border: 2px solid #222; */
    padding: 10px;
    line-height: 1.5;
    text-transform: lowercase;
    letter-spacing: 8px;
}

header + p {
    display: none;
}

/*CSS Examples */
section {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    margin-bottom: 800px;
}

section article {
    border: 2px solid hotpink;
    max-width: 360px;
    min-height: 200px;
    margin: 10px;
    flex: 0 0 auto;
    padding: 4px;
}

article h2 {
    font-size: 16pt;
}

article p {
    margin: 8px;
    line-height: 1.4;
}

#art1 div {
    width: 70%;
    aspect-ratio: 2/1;
    background-color: rgb(5, 170, 13);
    margin: 20px auto;
    border-radius: 20px;
}

#art2 div {
    width: 70%;
    aspect-ratio: 2.5/1;
    background-color: rgb(6, 197, 255);
    margin: 20px auto; /* centers a block */
    border-radius: 20px;
    box-shadow: 4px 8px 14px rgb(187, 0, 255);
}

#art3 h2 {
    font-family: "SUSE Mono", sans-serif;
    text-align: center;
    font-size: 18pt;
    color: Orange;
}

#art4 {
    position: relative;
}

#art4 h2 {
    color: #FF3;
    position: absolute;
    bottom: 0; left: 0;
    border: 0px solid yellowgreen;
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
}

#art5 {
    position: relative;
}

#art5 div {
    position: absolute;
}

#art5 div:nth-of-type(1) {
    width: 40%; aspect-ratio: 1;
    background-color: rgb(244, 128, 3);
    bottom: 0px; left: 200px;
    z-index: 2;
}

#art5 div:nth-of-type(2) {
    width: 40%; aspect-ratio: 1;
    background-color: #44F;
    bottom: 0px; right: 0px;
    z-index: 1;
}

#art6 {
    transition: all 300ms linear;
}

#art6:hover {
    background-color: #404;
    color: rgb(2, 250, 23); 
    border: 2px solid rgb(245, 3, 11);
}



