
/*Sets the margin and padding of the website to 0*/
body{
    padding: 0;
    margin: 0;
    background-color: #fbfff9;
}
/*Header with InTheZone logo*/
#header{
    width: 100%;
    height: 50px;
    background-color: #4c932a;
}
#headerTitle{
    text-align: center;
    font-size: 30px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: white;
}
/*Modifications to the navigation bar*/
#navbar{
    text-align: center;
}
.list{
    text-decoration: none;
    display: inline;
    padding-left: 10px;
    padding-right: 10px;
}
.list a{
    text-decoration: none;
    border-bottom: 2px solid green;
    color: #4c932a
}
.list a:hover{
    color: white;
    background-color: #4c932a;
}
/*Page titles*/
#maincontentHeader{
    text-align: center;
    font-size: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: green;
    padding-top: 20px;
}
/*Introduction of the home page*/
#introduction{
    margin-left: 15%;
    margin-right: 15%;
    width: 70%;
    height: 50px;
    color: #4c932a;
    margin-top: 30px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
/*Image of the store at the home page*/
#storeimage{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
/*List of facilities available*/
#facilities{
    font-size: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: green;
    padding-top: 20px;
    text-align: center;
}
#facilities1{
    border: 2px solid green;
    margin-left: 10%;
    width: 80%;
    margin-bottom: 15px;
}
#facilitieslist{
    color: #4c932a;
    margin-top: 30px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    line-height: 40px;
}
li{
    list-style: none;
}
/*Footer of the website*/
footer{
    width: 100%;
    height: 50px;
    background-color: #4c932a;
    margin-top: 20px;
    clear: both;
}
/*Images of the games in the products page*/
#image1{
    width: 165px;
    height: 200px;
    float: left;
    margin-left: 18px;
    margin-top: 5px;
}
#image1:hover{
    transform: scale(1.2)
}
.image{
    width: 165px;
    height: 200px;
    float: left;
    margin-left: 9px;
    margin-top: 5px;
}
.image:hover{
    transform: scale(1.2)
}
/*PS4 games section in the products page*/
#ps4header{
    margin-left: 8%;
    margin-right: 8%;
    width: 84%;
    height: 40px;
    background-color: #074bba;
}
#ps4games{
    margin-left: 8%;
    margin-right: 8%;
    width: 84%;
    height: 220px;
    background-color: #4d8cf2;
}
#ps4headertext{
    text-align: center;
    color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 30px;
}
/*Xbox games section in the products page*/
#xboxheader{
    margin-left: 8%;
    margin-right: 8%;
    width: 84%;
    height: 40px;
    background-color: green;
}
#xboxheadertext{
    text-align: center;
    color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 30px;
}
#xboxgames{
    margin-left: 8%;
    margin-right: 8%;
    width: 84%;
    height: 220px;
    background-color: #7ce685;
}
/*PC games section in the products page*/
#pcheader{
    margin-left: 8%;
    margin-right: 8%;
    width: 84%;
    height: 40px;
    background-color: red;
}
#pcheadertext{
    text-align: center;
    color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 30px;
}
#pcgames{
    margin-left: 8%;
    margin-right: 8%;
    width: 84%;
    height: 220px;
    background-color: lightcoral;
}
/*Text in the find us page*/
#findustext{
    width: 600px;
    height: 200px;
    float: left;
    margin-left: 30px;
}
#findustext1{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 20px;
    margin-top: 30px;
    border: 2px solid green;
    text-align: center;
}
/*Contact details in the contact us page*/
.contactdetails{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center; 
}


/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */  
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}
  
  /* Style the submit button with a specific background color etc */
  input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  /* When moving the mouse over the submit button, add a darker green color */
  input[type=submit]:hover {
    background-color: #45a049;
  }
  
  /* Add a background color and some padding around the form */
  .container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    width: 50%;
    margin-left: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    float: left;
  }
/*Text and images in the PCs and parts page*/
#builtpcs{
    width: 100%;
    height: 300px;
    position: relative;
    color: white;
}
#builtpcs1{
    width: 100%;
    height: 300px;
    position: relative;
    color: white;
}
.textinimage{
    color: white;
    position: absolute;
    left: 70px;
    font-size: 30px;
    top: 50px;
    top: 50px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
#builtpcs:hover{
    transform: scale(1.1)
}
#builtpcs1:hover{
    transform: scale(1.1)
}
/*Text of terms and conditions*/
#tcs{
    margin-left: 10%;
    margin-right: 10%;
}
/*Footer of the website*/
footer{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    color: white;
    font-size: 20px;
    padding-top: 15px;
}