body {
    background: #050427;
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
}


header {
    background: linear-gradient(#09073f, #050427);
    color: white;
    padding: 20px;
    height: 110px;
    text-align: center;

}

#usernameIndicator {
    visibility: hidden;
    font-size: 14px;
    font-style: normal;
    background: rgb(0, 0, 0);
    border-radius: 5px;
    padding: 5px 1px 5px 10px;
    width: fit-content;
    display: flex;
}

#usernameIndicator:hover {
    background-color: darkgreen;
}

h1 {
    margin-top: 29px;
    font-size: 50px;

}

#notes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.note {
    border: 2px solid #000000;
    background: whitesmoke;
    box-shadow: 5px 5px 5px #000000;
    margin: 10px;
    padding: 10px;
    width: 300px;
    height: 150px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.note:hover {
    background: #ffffff;
    color: rgb(0, 0, 0);
}

.note h2 {
    font-size: 20px;
    margin-top: 0;
}

.note p {
    font-size: 14px;
    font-weight: bolder;
    margin-top: 10px;
}

.note span {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    color: #999;
}

.buttons {
    margin-top: 130px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
    border-color: #000000;
    padding: 0.7em 2.3em;
    cursor: pointer;
    font-size: em;
    color: black;
    border-radius: 7px;
    background-image: linear-gradient(45deg, transparent 50%, #030008 50%);
    background-position: 25%;
    background-size: 400%;
    -webkit-transition: background 500ms ease-in-out, color 500ms ease-in-out;
    transition: background 500ms ease-in-out, color 500ms ease-in-out;
}

.buttons:hover {
    color: #ffffff;
    background-position: 100%;
}

#out {
    margin-top: 0px;
    margin-bottom: 1px;
    font-size: small;
    border-color: #430101;
    border-style: double;
    padding: 5px;
    padding-left: 8px;
    padding-right: 25px;
    cursor: pointer;
    font-size: em;
    width: 85px;
    color: white;
    background: #000000;
    border-radius: 7px;
    float: right;
    top: 0;
    left: 44%;
    display: flex;
    visibility: hidden;
    background-image: linear-gradient(45deg, transparent 70%, #910000 50%);
    background-position: 25%;
    background-size: 400%;
    -webkit-transition: background 300ms ease-in-out, color 300ms ease-in-out;
    transition: background 300ms ease-in-out, color 500ms ease-in-out;
}

#out:hover {
    border: #000000;
    color: #ffffff;
    background-position: 100%;
}

#logo {
    width: 100px;
    justify-content: center;
    margin: 22px;
    border-radius: 15px;

}

#heading {
    font-family: Arial, Helvetica, sans-serif;
}

#top {
    display: flex;
    justify-content: center;
    cursor: pointer;
}

#pic {
    width: 20px;
    margin-right: 5px;
    background-color: white;
    border-radius: 100px;
}

#outt {
    width: 15px;
    margin-right: 2px;

    background: white;
    border-radius: 100px;
}