/* RDStream Website Development by Samarendu Chatterjee*/
/* Verson-00 dated 03/10/2024 */
/* Coding: Samarendu Chatterjee */
/* Reference-1: Web Programming, Jhon Dean */
/* Reference-2: ChatGPT */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: justify; /* added-v01 */
    text-indent: none;   /* added-v01 */
    background-image: linear-gradient(to right, lightblue, #00ffff, #ff7700)
}

aside {
    border: thin dashed red;
    color: red;
    background-color: white;
    float: right;
    width: 240px;
    margin: 0px;
    padding: 0px;
    text-align: center;
}

header {
    background-color: blue;
    color: white;
    padding: 1em ;
    text-align: center;
    border-style: double; /* added-v01 */
    border-width: thick;  /* added-v01 */
     
}

a:hover {text-decoration:underline;}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display:  inline;
    margin-right: 20px; /*Space is changed from 20pk to 80px */
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

section {
    padding: 10px;
    
}
section > h2 {background-color: palegreen;}
footer {
    background-color:blue;
    color: #fff;
    padding: 1em 0;
    text-align: center;
}

address {
    display: inline;
}
