html,
body {
    height: 100%;
}

body {
    width: 100%;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    padding: 0;
    margin: 0;
    background: #c9c9c9;
    /* padding: 10px; */
}

.main {
    height: 100%;
    font-family: Arial;
    background: #f0f0f0;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 800px;
}

.left-side,
.right-side {
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.left-side::-webkit-scrollbar,
.right-side::-webkit-scrollbar {
    display: none;
}

.left-side {
    min-width: 50px;
    width: 15%;
    max-width: 100px;
    background: burlywood;
    box-sizing: border-box;
    padding: 35px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    max-height: 100%;
}

.right-side {
    margin: 0;
    padding: 25px;
    box-sizing: border-box;
    width: 100%;
    /* max-width: 700px; */
}

h1 {
    width: 100%;
    text-align: center;
}

.hr-black {
    border: 2px solid #777;
    width: 2.2rem;
}


.redirects {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-between; */
    box-sizing: border-box;
    width: 100%;
    /* height: 12rem; */
    /* gap: 1rem; */
}

.redirects .logo {
    padding: .7rem 0;
}

.socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
    height: 8rem;
    gap: .6rem;
}


.logo img {
    width: 1.8rem;
}

.logo {
    /* background: green; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    cursor: pointer;
}

.social {
    width: unset;
}

.panel:hover {
    background: hsl(34, 57%, 60%);
    transform: scale(1.05);
}

.social:hover {
    background: hsl(34, 57%, 70%);
    transform: scale(1.2);
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;

}

textarea,
input {
    padding: 10px;
    font-size: 16px;
    resize: none;
    overflow: hidden;
}

button {
    padding: 7px;
    background: #ccc;
}

button:hover {
    background: #ddd;
}

button:focus {
    background: #bbb;
}

#notesContainer,
#searchContainer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.note {
    background: white;
    padding: 10px;
    border-left: 4px solid dodgerblue;
}