* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body {
    width: 100%;
}

body::-webkit-scrollbar {
    display: none;
}

nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: lightskyblue;
    position: fixed;
    top: 0;
    z-index: 5;
}

nav > h1 {
    padding: 3rem;
    font-size: 2.5rem;
    font-weight: normal;
    color: white;
}
main {
    margin-top: 142px;
    display: flex;
    flex-direction: row;
    width: 100%;
}

main > * {
    width: 1fr;
}

.row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 2rem 0;
    position: relative;
}

.container {
    width: 100%;
}

.log-title {
    font-size: 1.5rem;
}

.stars > img {
    width: 2rem;
}

.row a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
}
.stars {
    width: 11.125rem;
    display: flex;
    flex-direction: row;
    justify-content: end;
}
@media  (max-width: 700px) {
    .row {
        padding: 2rem 3rem;
    }
}

#add {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 4rem;
    height: 4rem;
    border: none;
    font-size: 2rem;
    border-radius: 100px;
}

