body {
    background-color: #f8f8f8;
    font-family: Arial, sans-serif;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 36px;
    text-align: center;
}

p {
    font-size: 18px;
    margin-bottom: 10px;
}

textarea {
    width: 100%;
    height: 200px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    font-family: monospace;
}

.button {
    background-color: #0073FF;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
}

.button:hover {
    background-color: #0061D7;
}

#outputCode {
    background-color: #f8f8f8;
}

.convert {
    height: 24px;
    width: 24px;
}


/* desktop menu styles */
header {
    background-color: #FFF;
    color: #000;
    padding: 20px 70px;
    box-shadow: 0px 6px 16px rgb(0 0 0 / 4%);
    margin-bottom: 48px;
    height: 50px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0 10px;
}

.menu li a {
    color: #000;
    text-decoration: none;
    /* font-weight: bold; */
}

.site-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    display: none;
}

.site-menu {
    display: flex;
    /* flex-direction: column; */
    /* top: 100%;
    left: 0; */
    width: 100%;
    /* background-color: #fff;
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transform: scaleY(0);
    transition: transform 0.3s ease-in-out; */
    /* z-index: 100; */
}

.site-menu li {
    display: block;
    margin: 0;
}

.site-menu a {
    display: block;
    padding: 1em;
    color: #000;
    text-decoration: none;
}

.site-menu a:hover {
    background-color: #f7f7f7;
}

.site-menu.show {
    transform: scaleY(1);
}