body {
    background-image: url('Untitled\(2\).jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

h1, h2 {
    font-family: 'Roboto', sans-serif;
}

h1 {
    font-size: 92px;
    color: #1f1f1f;
}

h2 {
    font-size: 46px;
    color: #1f1f1f;
}

h3 {
    font-size: 30px;
    color: #1f1f1f;
}

body {
    background-color: #f0f0f000;
    padding: 20px;
    text-align: center;
}

body img {
    max-width: 70%;
    height: auto;
}

#left-slope, #right-slope {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to bottom, white, rgb(131, 131, 131));
    z-index: 1000;
    transform: translateX(0);
    transition: transform 1s ease-in-out;
}

#left-slope {
    left: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

#right-slope {
    right: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

#content {
    display: none;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 1;
    color: #333;
}

#left-slope.move-out {
    transform: translateX(-100%);
}

#right-slope.move-out {
    transform: translateX(100%);
}

.twitter-icon {
    color: #1f1f1f;
    font-size: 77px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.twitter-icon:hover {
    color: #0d8ddb;
}

.twitter-icon i {
    margin-right: 5px;
}

.facebook-icon {
    color: #1f1f1f;
    font-size: 77px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.facebook-icon:hover {
    color: #0d22db;
}

.facebook-icon i {
    margin-right: 5px;
}

footer {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px;
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0;
}

.sidebar {
    height: 88%;
    width: 250;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #1111119d;
    padding-top: 20px;
}

.sidebar a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
}

.sidebar a:hover {
    background-color: #252525;
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .hamburger-menu {
        display: block;
        cursor: pointer;
        margin: 10px auto;
        width: 30px;
        height: 25px;
    }

    .hamburger-menu span {
        display: block;
        background: #000000;
        height: 4px;
        margin: 5px 0;
    }

    .mobile-nav {
        display: none;
    }

    .mobile-nav.active {
        display: block;
        background: #000000;
        position: absolute;
        top: 0;
        right: 0;
        width: 200px;
        height: 100%;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
        z-index: 10;
    }

    #contact {
        font-size: 1em;
        text-align: center;
        padding: 10px;
    }
}

img {
    max-width: 100%;
    height: auto;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    margin: 10px auto;
    width: 30px;
    height: 25px;
}

.hamburger-menu span {
    display: block;
    background: #00000063;
    height: 4px;
    margin: 5px 0;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .sidebar {
        display: none;
    }
}

.mobile-nav {
    display: none;
}

.mobile-nav.active {
    display: block;
    background:#00000063;
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 10;
}