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

body {
    width: 100vw;
}

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;
}

body {
    margin-top: 142px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.center {
    display: flex;
    justify-content: center;
}

.add-pos, add-acc {
    width: 100%;
}

.container {
    margin-top: 3rem;
    font-size: 1.5rem;
    width: 25rem;
    padding: 2.5rem;
    border: 1px black solid;
    border-radius: 2rem;
    margin-bottom: 13rem;
    transform: translateY(7rem);
}

h2 {
    font-weight: normal;
    margin-bottom: 2rem;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 1.75rem;
    padding: 1.5rem 0;
    align-items: center;

}

.del-pos, .del-acc {
    width: 6rem;
    height: 2.5rem;
    border: none;
    font-size: 2rem;
    margin-left: 1rem;

    border-radius: 100px;
    flex-shrink: 0;
}

.add-pos, .add-acc {
    font-size: 2rem;
    margin-top: 1rem;
    transform: translateY(0.75rem);
    border: none;
    border-radius: 100px;
    width: 100%;
    padding: 0.5rem;
}

hr {
    width: calc(100% + 5rem);
    transform: translateX(-2.5rem);
}

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


.tab {

    width: 50vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 1.5rem;
    background-color: white;
    font-size: 2rem;
}


.tab-widget {
    width: 100%;
    height: 100%;
}

.tabs {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: absolute;
}
[data-selected="false"] {
    background-color: ghostwhite;
    border-bottom: 2px black solid;

    border-right: 2px black solid;
}
[data-selected="true"] {
    border-right: 2px black solid;
}
.content {
    width: 100%;
    height: 100%;
    background-color: lightblue;
    font-size: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.tab p {
    position: absolute;
    transform: translateY(-3rem);
}

.tab:last-child {
    border-right: none;
}

main {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
button {
    border: none;
    color: black;
}

.gone {
    display: none;
}

.star {
    display: none;
}
.star-rating img {
    width: 4rem;
}

h2 {
    font-size: 2rem;
}

.save {
    margin-bottom: 3rem;
    margin-top: 1rem;
    font-size: 1.5rem;
    background-color: white;
    color: blue;
    text-decoration: underline;
}

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

@media  (max-width: 700px) {
    .container {
        margin-left: 4rem;
        margin-right: 4rem;
        padding-left: 0;
        padding-right: 0;
        width: 20rem;
    }
    .row > p {
        font-size: 1.5rem;
    }
    .tab {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    .row {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .add-pos, .add-acc {

        left: 2rem;
        right: 2rem;
        position: relative;
        width: calc(100% - 4rem);
    }
    hr {
        width: calc(100%);
        transform: translateX(0);
    }
}

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