* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

#main {
    width: 100%;
    min-height: 100vh;
    padding-bottom: 59px;
    background-color: #2d3436;
    display: flex;
    flex-wrap: wrap;
}

#addBtn {
    position: fixed;
    left: 18px;
    top: 10px;
    background-color: #2d3436;
    color: white;
    padding: 10px;
    border: 0;
    outline: 0;
    border-radius: 5px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #81ecec;
    margin-top: 0px;
}

.note {
    width: 240px;
    height: 260px;
    background-color: white;
    margin: 15px;
    margin-top: 55px;
    border-radius: 10px;
    margin-left: 20px;
    margin-bottom: 30px;
}

.icons {
    width: 104%;
    background-color: #0d7390;
    color: white;
    padding: 5px;
    display: flex;
    justify-content: start;
    border-radius: 10px 10px 0px 0px;
}

.icons i {
    padding: 5px;
    cursor: pointer;
}

.note textarea {
    border: none;
    width: 100%;
    height: 87%;
    resize: none;
    padding: 30px;
    font-size: 18px;
    border-radius: 15px;
    background-color: beige;
    border-radius: 0px 0px 10px 10px;
}

.title-div textarea {
    border-radius: 0px 0px 0px 0px;
    margin-bottom: -4px;
    background-color: #a4cad4;
    font-weight: bolder;
    font-size: x-large;
}

.heading {
    position: fixed;
    margin-top: 35px;
    color: ivory;
}

.note textarea:focus {
    border: 0;
    outline: 0;
}


  ......MENO STELE.....
body {
	margin: 31;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(to right bottom, gold, chocolate);
}

nav ul {
	list-style-type: none;
	padding: 100;
}

nav ul li {
	font-size: 32px;
	font-family: sans-serif;
	background-color: rgba(255, 255, 255, 0.66);
	border: 4px solid black;
	letter-spacing: 0.1em;
	width: 5em;
	height: 1.9em;
	line-height: 0em;
	position: relative;
	overflow: hidden;
	margin: 0.5em;
	cursor: pointer;
}

nav ul li span {
	color: #8d1212;
	mix-blend-mode: difference;
}

nav ul li::before {
	content: '';
	position: absolute;
	width: 1.5em;
	height: inherit;
	background-color: rgba(79, 44, 44, 0.64);
	border-radius: 40%;
	top: 0;
	left: -0.75em;
	transition: 0.5s ease-out;
}

nav ul li:hover::before {
	transform: scale(7);
}
