:root{
  --primary-color: rgba(30, 170, 231);
  --secondary-color: rgba(128, 191, 40);
}

*{
  margin: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header{
  display: flex;
  align-items: center;
}

#main-part{
  width: 298px;
  height: 103px;
  cursor: pointer;
  transform: translateX(-3mm);
}

#main-part:hover{
  scale: 1.1;
  transition: 0.3s ease;
}

#menu{
  transform: translateX(-5cm);
  scale: 1.4;
}

.menu-btn{
  text-decoration: none;
  background: none;
  border: none;
  color: black;
  font-weight: bold;
  margin-left: 20px;
  margin-right: 20px;
  padding: 13px;
  cursor: pointer;
}

.menu-btn:hover{
  scale: 1.2;
  transition: 0.3s ease;
}

#opened{
  color: var(--secondary-color);
}

/* INDEX.HTML*/

#intro-frame{
  display: flex;
  align-items: center;
  position: relative;
}

#intro-logo{
  transform: translate(-4cm, 1cm);
}

.paragraph{
  font-size: 20px;
  width: 700px;
}

#introduction{
  position: absolute;
  top: 3.5cm;
  right: 30%;

}

#about-frame{
  display: flex;
  align-items: center;
  position: relative;
}

#about{
  position: absolute;
  top: 5cm;
  right: 30%;
}



footer{
  background-color: red;
}