@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    list-style: none;
    line-height: 1.5;
    font-weight: 400;
    color: white;
}

a:link {
    text-decoration: none;
  }
  
  a:visited {
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: none;
  }
  
  a:active {
    text-decoration: none;
  }

html {
    background-color: rgba(0, 0, 0, 0.05);
    -ms-overflow-style: none;  /* Internet Explorer and Edge */
    scrollbar-width: none;  /* Firefox */
}

::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

body {
    max-width: 1024px;
    margin: auto;
    background-color: #000000;
}

header div {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}
#logo {
    margin-left: 15px;
    height: 75px;
    cursor: pointer;
}

#menuButton {
    height: 20px;
    margin-right: 15px;
    cursor: pointer;
}

#menuList {
    display: none;
    text-align: end;
    border-radius: 0 0 10px 10px;
    margin-right: 15px;
    padding-bottom: 15px;
    cursor: pointer;
}

#menuList.active {
    display: block;
    margin-bottom: 20px;
}

#menuList li {
    line-height: 2;
    font-weight: 500;
}

#menuList a {
    line-height: 2;
    font-weight: 500;
}

#banner {
    margin-top: -35px;
    padding: 15px;
    width: 100%;
    border-radius: 30px;
}

#about{
    background-color: #1f1f1f;
    border-left: 5px solid #f97219;
    margin: 15px;
    padding: 15px;
    text-align: center;
    font-size: 1.5em;
}

#services {
    padding: 30px;
    border: solid 1px #555555;
    margin: 30px 30px 15px 30px;
    border-radius: 15px;
    text-align: center;
}

#services h1 {
    font-weight: bold;
    font-size: 1.5em;
    text-align: center;
}

#services button {   
    background-color: transparent;
    color: #ffffff;
    margin: 15px;
    padding: 5px;
    border: solid #f97219;
    width: 250px;
    line-height: 2;
    font-weight: 500;
    font-size: 1.1em;
}

h3 {
    padding: 15px;
    text-align: center;
    margin: 15px;
}

#bottom {
    width: 100%;
}

footer {
    background-color: #f97219;
    padding: 30px;
    font-size: 1em;
    text-align: center;
}

footer h1, p{
    font-size: 1em;
    background-color: #f97219;
    color: white;
}