* {
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    background-color: rgb(200, 200, 200);
}

.div {
    border: 2px solid rgb(0, 0, 0);
    border-radius: 5px;
    padding: 20px;
    margin: 30px;
    background-color: #fff;
}

.digibtn {
    text-decoration: none;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 3px;
    background-color: rgb(0, 0, 0);
    font: bold;
    color: white;
    padding: 10px;
}

.header {
    display: flex;
    background-image: linear-gradient(yellow, red);
    color: #fff;
    padding: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
    align-items: center;
}

.headline1 {
    text-align: start;
}

.nav {
    text-align: start;
    display: none;
    flex-direction: column;
}

#menu-btn {
    color: #fff;
    background-color: #333;
    padding: 5px;
}

.topMargin {
    margin-top: 150px;
}

.div img {
    width: 30%;
}

.width100p {
    width: 100%;
}

.div p {
    font-size: 20px;
}

li {
    font-size: 20px;
}


.menu-toggle {
    display: block;
    width: 30px;
    height: 30px;
    margin: 10px;
    margin-top: 15px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #fff;
    margin-bottom: 5px;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -270px;
    width: 250px;
    height: 100%;
    background-image: linear-gradient(red, blue);
    color: #fff;
    z-index: 1;
    transition: left 0.3s ease;
    margin-top: 118.875px;
    padding: 10px;
}

.sidebar::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: rgb(200, 200, 200);
    position: absolute;
    right: -21.3px;
    top: 0;
    border-radius: 50%;
    z-index: 2;
}

.sidebar::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: red;
    position: absolute;
    right: -10px;
    top: 0;
    z-index: 1;
}

.sidebar1 {
    position: fixed;
    top: 0;
    left: -270px;
    width: 250px;
    height: 100%;
    background-image: linear-gradient(red, blue);
    color: #fff;
    z-index: 1;
    transition: left 0.3s ease;
    margin-top: 118.875px;
    padding: 10px;
}



.sidebar a {
    margin-top: 5px;
    margin-bottom: 5px;
    color: yellow;
}

.sidebar1 a {
    margin-top: 5px;
    margin-bottom: 5px;
    color: yellow;
}

.content {
    margin-left: 0;
    padding: 20px;
    transition: margin-left 0.3s ease;
}

iframe {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border: none;
}

th {
    text-align: left;
}

table {
    border-collapse: collapse;
    width: 100%;
    min-width: none !important;
}

td,
th {
    border: 1px solid black;
    padding: 8px;
}

.tableDiv {
    border: 1px solid black;
    background-color: rgb(0, 213, 255);
    border-radius: 20px;
    width: 90%;
}

.cornertd {
    border: none !important;
}

.pdfLogo {
    height: auto;
    width: 100px !important;
}

.download-elements {
    margin-bottom: 5px;
    color: rgb(0, 13, 255);
}

.sidebar_Handy {
    position: fixed;
    top: -300px;
    width: 100%;
    background-image: linear-gradient(red, blue);
    z-index: 1;
    transition: top 0.3s ease;
    padding: 10px;
    margin-top: 118.875px;
}

.sidebar_Handy a {
    color: yellow;
}

.email {
    font-size: 14px;
}

.mapMSRosegger {
    width: 100%;
    height: 500px;
    border: 2px solid black;
    border-radius: 20px;
}

.slide-from-right {
    animation: slideRight 1s forwards;
}

.slide-from-left {
    animation: slideLeft 1s forwards;
}

.footer {
    text-align: center;
    background-image: linear-gradient(red, yellow);
    color: #fff;
    padding: 20px;
    margin: 0 !important;
    position: absolute;
    left: 0;
    right: 0;
}

.easteregg {
    border: 3px solid #333;
    border-radius: 5px;
    transition: 1s;
}

.easteregg:hover {
    border: 5px solid #130080;
}

@keyframes slideRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}




@media screen and (min-width: 1024px) {
    .width100p {
        width: 70%;
    }

    .tableDiv {
        width: 90%;
    }
}

@media screen and (max-width: 767px) {
    .div {
        margin: 10px;
        padding: 10px;
    }

    .div img {
        width: 100%;
    }

    .width100p {
        width: 100%;
    }

    .tableDiv {
        width: 100%;
    }

    .sidebar::after {
        display: none;
    }

    .sidebar::before {
        display: none;
    }

    .content {
        margin-left: 0;
    }

    .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #menu-btn {
        display: block;
    }

    .topMargin {
        margin-top: 150px;
    }

    table {
        font-size: small;
    }
}