/* The stylesheet for the Homepage. */

/* background color for the entire page*/
html, body {
    background-color: #f7f2f2f6;
}

.container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

.container .background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* Crops image to fit container without distortion */
    object-position: 0px -200px;
    display: block;
}

.container .header {
    position: absolute;   /* Overlay text on image */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-size: 2rem;
    width: 80%;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
}


.content {
    position: relative;
    width: 100%;
    height: 450px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16pt ;
    padding: 0px 8px;
}

.content h3{
  text-indent: 15pt;
}


.Aboutus {
    display: grid;
    grid-template-areas:
        "header header"
        "content logo"
        "footer footer";
    grid-template-columns: 75% 25%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    gap: 3px;
    padding: 5px;
}
.Aboutus div {
    padding: 10px;
}
.Aboutus div.header {
    grid-area: header;
    text-align: center; font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.Aboutus div.content {
    grid-area: content;
}
.Aboutus div.logo {
    grid-area: logo;
}
.Aboutus div.Order {
    grid-area: footer;
    text-align: center; 
    background-color: rgb(43, 227, 247);
    padding: 80px 150px; /*heigth and width of the blue border*/
    border: 0px solid;
    border-radius: 75px;
    position: static;
    display: inline-block;
    margin: 0px auto;
}

.Aboutus div.Order a{
    text-decoration: none;

}

.Aboutus div.Order a h2{
    margin-top: auto;
    display: inline-block;
    color: black;
    align-self: center;
    padding: 10px 20px;           /* Space inside */
    border: 4px solid #b71c1c;    /* Border width */
    background-color: #e53935; 
    border-radius: 999px;         /* Bubble shape */
    font-size: 1.8rem;
    margin: 0px 0px 12px 0px;     

}


.Aboutus div.Order ul {
    list-style-position: outside;
    text-align: center;
    margin: 0 auto;
    padding-left: 0px;
    font-size: 14pt;
    font-weight: bold;
}
