@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');


* {
    padding: 0;
    margin: 0px;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

html {
    scroll-behavior: smooth;
}

body{
    display: flex;
    justify-content: center;
    background-image: url(images/bg800bulbs.jpg);
    background-position: top left, top right;
    background-repeat: no-repeat, repeat;
    background-color: rgb(84, 77, 71);
    width: 100%;
   
    
    
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0%;
    background-color: white;
    border-radius: 10px;
    border-color: gray;
    
}

.container {
    width: 60%;
    padding: 50px;
    margin: 20px;
    
    
}


.logo {
    cursor: pointer;
   
}

li {
    display:inline;
    float: right;
}

a {
    display: block;
    padding: 8px;
    background-color: white;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow:hidden;
    background-color: white;
}

li a {
    display: block;
    color: black;
    text-align: center;
    
    text-decoration: none;
}

li, a, button {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: grey;
    text-decoration: none;
    border-radius: 25px;
    padding: 10px;
    cursor: pointer;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px
}

main {
    background-color: white;
    border-radius: 10px;
    border: 2px solid gray;
}



section {
    margin: 15px;
    /* border-radius: 10px; */
    font-family:sans-serif;
    font-size: 12px;
}


.nav_links li {
    display:inline-block;
    padding: 0px 20px;
}

.nav_links li a {
    transition: all 0.3s ease 0s;
}


li a:hover {
    color: red;
}




footer {
    background-color: rgb(185, 105, 46);
    color: white;
    padding: 10px;
    border-radius: 5px;
}


.containertwo{
    border:2px solid #24acbe;
    background-color: #eee;
    border-radius: 5px;
    padding: 16px;
    margin: 16px 0;
}

.containertwo::after {
    content:"";
    clear: both;
    display: table;
}
.containertwo img {
    float: left;
    margin-right: 20px;
    border-radius: 50%;
}

.containertwo span {
    font-size: 20px;
    margin-right: 15px;
}

img {
    float: right;
    border-radius: 5px;
}

.Testimonials {
    font-size: 14px;
}

@media (width: 100%) {
    .containertwo {
        text-align: center;
       }   }

@media (min-width:768px) {
  p {
  font-size: 1.25rem;
  }
}

@media (max-width:1024px) {
  p {
  font-size: 1.5rem;
  }
}




