/*  
    Course: ITWP-2750
    Assignment: project 3
    Filename: styles.css
*/

body {
    background-color: #f3f3f3;
    font-family: arial;
}

.article-container {
    display: flex;             
    justify-content: center;   
    gap: 5px;                
    flex-wrap: wrap;           
    padding: 20px;             
}

.article-box {
    text-align: center;   
    background-color: #f0f0f0; 
    padding: 20px;           
    margin: 20px auto;       
    border-radius: 5px;      
    max-width: 800px;        
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    border: 1px solid #000;
}

input{
    padding: 0px 20px;
    width: 300px;
    height: 40px;
    font-size: 22px;
}

button{
    width: 100px;
    height: 44px;
    font-size: 22px;
}


#validation{
    text-align: center;
}

h1{
    text-align: center;
    font-size: 50px;
}

.article-box h3 {
    font-size: 1.5rem; 
    color: #333; 
    margin-bottom: 10px; 
}

.article-box p {
    font-size: 1rem; 
    color: #555; 
    margin-bottom: 5px; 
}

.article-box p:last-child {
    font-style: italic; 
    color: #777; 
}

body {
    background-color: lightblue;
}