/*
Project 1 CSS File
Melissa Daoud
ITWP 1150 - React
3/15/2024
*/

body {
    /* background: url("images/stars1.jpg") no-repeat; */
    background: url("images/beige1.jpg") no-repeat;
    /* background-position-y: -164px; */
    background-size: cover;
    text-align: center;
}

/* IDs */
#validation {
    text-align: center;
    font-weight: bold;
    background-color: #eee;
    width: 800px;
    border-radius: 10px;
    padding: 5px;
    margin-top: 45px;
    margin-left: auto;
    margin-right: auto;
}

#leftAligned {
    padding-left: 6px;
    padding-right: 6px;
    text-align: left;
}

#container {
    padding: 25px;
    background-color: #fff;
    display:flex; 
    flex-direction:row;
    align-items: center;
    justify-content: center;
}

/* Visualization, Art Therapy, and Aroma Therapy main and left div properties */
#visualizationDiv, #artTherapyDiv, #aromaTherapyDiv {
    margin: auto;
    margin-top: 50px;
    width: 800px;
}

#visualizationLeftDiv, #artTherapyLeftDiv, #aromaTherapyLeftDiv {
    width: 300px;
    float: left;
}

/* Visualization, Art Therapy, and Aroma Therapy right div properties */
#visualizationRightDiv {
    width: 410px;
    height: 400px;
    float: right;
    /* background-color: #BDD4BC;  */
    background-color: #D4F4ED; 
    box-shadow: 0px 0px 5px #000;
}

#artTherapyRightDiv {
    width: 410px;
    height: 400px;
    float: right;
    background-color: #FCDBE2;
    box-shadow: 0px 0px 5px #000;
}

#aromaTherapyRightDiv {
    width: 410px;
    height: 400px;
    float: right;
    /* background-color: #CCCCFF; */
    background-color: #C9DFEC; 
    box-shadow: 0px 0px 5px #000;
}

/* Classes */
/* Used to create the separator div sections so the other sections don't 'float' around the screen */
.separator {
    clear: both;
}