* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

body {
 font-family: 'Segoe UI', Arial, sans-serif;
 background: url("home.jpg") no-repeat center/cover;
 height: 100vh;
 overflow: hidden;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
}

.overlay {
 position: absolute;
 left: 0;
 top: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.4);
 z-index: -1;
}

.menu-bar {
 position: absolute;
 top: 15px;
 left: 15px;
 font-size: 2rem;
}

.left-sidebar {
 position: fixed;
 top: 0;
 background: url("leftSide.png") no-repeat center/cover;
 overflow-y: auto;
 height: 100vh;
 width: 100%;
 left: -100%;
 transition: 0.5s ease;
}

.left-sidebar.appear {
 left: 0;
}

.left-sidebar h3 {
 color: #ffffff;
 padding: 15px 10px;
}

.left-sidebar a {
 color: #cccccc;
 padding: 15px 20px;
 text-decoration: none;
 gap: 15px;
 display: flex;
}

.lsb-remove {
 position: absolute;
 top: 15px;
 right: 20px;
 font-size: 2rem;
}

.main-content {
 position: relative;
 text-align: center;
}

.my-web {
 font-size: 2.8rem;
 font-weight: 300;
 margin-bottom: 25vh;
}

.status-msg h2 {
 font-size: 2.2rem;
 margin-bottom: 10px;
 font-weight: 200;
}

.status-msg p {
 font-size: 1.1rem;
 opacity: 0.5;
 font-style: italic;
 font-family: monospace;
}

footer {
 position: absolute;
 width: 100%;
 bottom: 30px;
 text-align: center;
 font-size: 0.9rem;
}