/* https://www.w3schools.com/css/css_rwd_grid.asp */
/* This CSS is the basic structure of every following webpage */
* {
    box-sizing: border-box;
    margin:0;
    background-color: rgb(224, 200, 216);
    scroll-behavior: auto;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.5vw;
    font-weight: lighter;
}

h1{
    font-size: 3vw;
    text-align: center;
    line-height: 2em;
    font-weight: bold;

}

body{
    overflow: scroll;
    min-height: 100vh;
}

/* */
main {
    height:70%;
    font-size: small;
    

}

/*This is the design for links in the navbar */

.navigation a {
background-color: rgba(128, 128, 128, 0.893);
float: left;
color: black;
display: block;
text-align: center;
width: 16.6666%;
padding-top: 2%;
text-decoration: none;
font-size: 2.5vw;
font-weight: bold;
padding-bottom: 2%;
}

.navigation a:hover {
background-color: rgba(60, 55, 55, 0.893);
color: black;
}


.subscribe{
    background-color: rgba(128, 128, 128, 0.893);
    text-align: center;
}

/* This is the design for the subscription area on the homepage */

.newsletter form{
    background-color: rgba(128, 128, 128, 0.893);
    text-align: center;
    width: auto;
    height: auto;
    clear: both;
    padding-top: 10px;
    padding-bottom: 10px;
    
}

input[type=email]{
    padding:10px;
    border:0;
    border-radius: 10px;
}

.newsletter button{
    padding: 10px;
    background-color: rgba(55, 50, 50, 0.893);
    margin-left: 1%;
    border-radius: 10px;
    border:0;
    font-weight: bold;
}

@media only screen and (max-width: 1200px){
    
    [class*="col-"]{
        width: 100%;
    }
}

#introduction{
    clear:left;
    max-height: 60%;
}

/* This CSS explains the new release area for the property on the home page */

.release {
    max-width: 50%;
    height: 100%;
    float: left;
    padding-top: 2vh;
    padding-bottom: 2.5vh;
    
}

.leftimage{
    max-width: 50%;
    height: 100%;
    float: left;
    padding: 5%;
    margin-top: 7vh;
}

.hair .hairclass{
    float:left;
    max-width: 33.3%;
    padding: 7px;
    object-fit: contain;
 
}

.hair img{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 40vh;
}


.clothes .clothesclass{
    float: left;
    max-width: 33.3%;
    padding: 7px;
    
  
}

.clothes img{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 40vh;
    vertical-align: middle;
}

.makeup .makeupclass{
    float: left;
    max-width: 33.3%;
    padding: 7px;
    object-fit: contain;
}

.makeup img{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 40vh;
}

.house .houseclass{
    float: left;
    max-width: 33.3%;
    padding: 7px;
    object-fit: contain;
}

.house img{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 40vh;
}
/* This CSS as well as the contactinfo class is what shows up on the contact page together */
.Copyright {
    max-width: 50%;
    height: 100%;
    float: left;
    text-align: center;
    border-right: solid;
    border-right-color: rgba(128, 128, 128, 0.893);
    padding: 5%;
    padding-bottom: 25vh;
   
}

.Contactinfo{
    max-width: 50%;
    height: 100vh;
    float: left;
    text-align: center;
    padding: 5%;
}

/* This CSS is for the next page button located in the footer of each page */
.next1{
    float: right;
    background-color: rgba(128, 128, 128, 0.893); ;
    color: black;
    border: solid;
    border-color: rgba(128, 128, 128, 0.893);
    border-radius: 8px;
    padding: 10px;
    font-weight: bold;
    text-decoration: none;
}

