body { * { box-sizing: border-box; } font-family: Arial, Helvetica, sans-serif; margin: 0; ul { margin: 0; padding: 0; list-style-type: none; } } main { background: url("../assets/images/wallpaper_binary.png"); display: flex; flex-direction: column; align-items: center; min-height: 100vh; header { width: 100%; nav { background-color: rgba(255, 255, 255, 0.1); ul { display: flex; padding: 0; margin: 0; list-style-type: none; li { position: relative; a { display: flex; align-items: center; height: 100%; padding: 10px 20px; color: #b8b9c5; font-weight: 500; text-decoration: none; img { width: 40px; } } .submenu { visibility: hidden; position: absolute; height: auto; max-height: 0; transition: max-height 0.6s; top: 100%; left: 50%; flex-direction: column; background-image: linear-gradient( rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) ), url("../assets/images/wallpaper_binary.png"); white-space: nowrap; } &.active { a { color: white; } } &:hover { background-color: #fff2; a { color: white; } .submenu { visibility: unset; max-height: 1000px; a { color: #b8b9c5; } li { &:hover { a { color: white; } } } } } } } } } #page-container { background-color: white; width: 1200px; max-width: 100%; flex: 1; @import "./pages/education/education.scss"; } footer { width: 100%; background-color: #fff1; padding: 20px; } }