:root{
  --base-color: white;
  --second-color: rgb(212, 210, 210);
  --tercial-color: rgb(100, 99, 99);
}
*{
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

.header {
  position: sticky;
  top: 0px;
  display: flex;
  padding: 0;
  height: 120px;
  width: 100%;
  box-shadow: 0 0 5px 0 black;
  z-index: 20;
}

.menu {
  width: 100%;
}
.right{
    float:left;
    width:100%;
}

.icons {
  float:left;
  width:100%;
  display: flex;
  justify-content: end;
  align-items: center;
  background-color: var(--second-color);
  height: 60px;
}
.icons i{
  font-size: 22px;
}
#facebook {
  color: blue;
  font-size: 28px;
 
}

.icons a {
  font-size: 15px;
  color: var(--tercial-color);
  text-decoration: none;
  margin: 0 10px;
}

.icons a:hover {
  color: black;
}

.menu-header {
  float:left;
  width:100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg,rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
  height: 60px;
}

.menu-header a {
  font-size: 18px;
  text-decoration: none;
  color: var(--base-color);
  margin: 0 15px;
  transition: 0.3s ease;
}

.menu-header a:hover {
  color: var(--tercial-color);
}