html, body {
    height: 100%;
    margin: 0px;
    padding: 0px;
    font-family: 'Quicksand', sans-serif;
    display: flex;
    flex-direction: column;
  }
  body {
    display: flex;
    flex-direction: column;
  }
a {
    color: #545454;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.container {
   display: flex;
   flex-direction: column;
   margin: 0px;
}
#top-half {
    background-color: #EDF2F6;
    justify-content: space-between;
    display: flex;
    height: 400px;
    width: 100%;
    flex-direction: column;
}
#logo {
    height: 35px;
    width: 233px;
    margin-top: 50px;
    align-self: center;
}
#header-text {
 color: white;
 font-weight: bold;
 font-style: normal;
 font-size: 40px;
 line-height: 50px;
 text-align: center;
 margin-top: 50px;
}
#header-image {
    width: 526px;
    height: 119;
    align-self: center;
}
#bottom-half {
    flex: 1 0 auto;
    display: flex;
    width: 100%;
    background-color: white;
    flex-direction: column;
    margin: 0px;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
    padding-bottom: -5px;
}
#bottom-half-inner {
    max-width: 1003px;
    box-sizing: border-box;
    align-self: center;

}
#bottom-header {
 color: black;
 font-weight: bold;
 font-style: normal;
 font-size: 32px;
 line-height: 40px;
 margin-top: 50px;
 text-decoration: none;
 padding: 0;

}
#grid-parent {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-self: center;
    padding: 0;
    gap: 150px;
    margin-top: 20px;
}
.grid-children-left {
    display: flex;
    flex-direction: column;
}

.grid-children-right {
    display: flex;
    flex-direction: column;
}
.grid-children-left-text-top {
    color: black;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 22.5px;

}
.grid-children-left-text-bottom {
    color: black;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 22.5px;
    margin-top: 20px;
    padding: 0px;
}
#grid-children-right-text {
    color: #777777;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 22.5px;

}
#add-shop-btn {
    background: linear-gradient(270deg, #094FC3 0%, rgba(9, 79, 195, 0) 100%), 
    linear-gradient(90deg, #CD408F 0%, rgba(205, 64, 143, 0.2) 100%);
    border-radius: 10px;
    width: 291px;
    height: 50px;
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 23px;
    margin-top: 20px;
    font-family: "Quicksand";
    font-weight: 500;
    cursor: pointer;
}

#company {
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    color: #545454;
    align-self: center;
}
footer {
    flex-shrink: 0;
    width: 100%;
    color: white;
}
#footer-image {
    width: 100%;
    height: 135px;
}

@media only screen and (min-width: 1700px) { 
    #bottom-half {
        padding-bottom: 20px;
    }
    #company {
        margin-top: 104px;
    }
}
@media only screen and (max-width: 800px) {
    #header-image {
        width: 305px;
        height: 69px;
        align-self: center;
    }  
    #logo {
        height: 26px;
        width: 167px;
        margin-top: 50px;
        align-self: center;
    }
    #bottom-half {
        padding-bottom: 0px;
    }
    
    #bottom-header {
        color: black;
        font-weight: bold;
        font-style: normal;
        font-size: 26px;
        line-height: 32px;
        text-align: left;
        width: 90%;
        align-self: center;
    }
    #grid-parent {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 90%;
        align-self: center;
    }
    .grid-children-left {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .grid-children-right {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-content: center;
        margin-top: -150px;
    }
    #add-shop-btn {
        background: linear-gradient(270deg, #094FC3 0%, rgba(9, 79, 195, 0) 100%), 
        linear-gradient(90deg, #CD408F 0%, rgba(205, 64, 143, 0.2) 100%);
        border-radius: 10px;
        width: 330px;
        height: 50px;
        border: none;
        color: white;
        padding: 10px 32px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 23px;
               align-self: center;
        font-weight: bold;
        cursor: pointer;
    }
    #company {
       font-style: normal;
        font-weight: 300;
        font-size: 12px;
        line-height: 15px;
        color: #545454;
        width: 90%;
    }
    footer {
        position: relative;
        width: 100%;
        color: white;
    }
    #footer-image {
        width: 100%;
        height: 74px;
    }
}