* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

p {
    margin: 0 !important;
}

body {
    background: radial-gradient(circle, #92eb4c 40%, transparent 41%),radial-gradient(circle at bottom left, #92eb4c 20%, transparent 21%),radial-gradient(circle at bottom right, #92eb4c 20%, transparent 21%),radial-gradient(circle at top left, #92eb4c 20%, transparent 21%),radial-gradient(circle at top right, #92eb4c 20%, transparent 21%);
    background-size: 6em 6em;
    background-color: #ffffff;
    color: #333;
    font-family: 'Fredoka', sans-serif;
}

main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.logo {
    border-radius: 50%;
    width: 9rem;
    position: absolute;
    margin: 0.5rem;
}

.banner_top {
    height: 140px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 2rem 3rem;
    background-color: #92eb4c;
}

.navigation_top ul {
    display: flex;
    list-style: none;
    margin-left: 7.5rem;
}

.navigation_top ul li {
    margin: 0 0.5rem;
    transition: transform 0.2s ease;
}

.navigation_top ul li:hover {
    transform: scale(1.08);
}

.navigation_top ul li a,
.navigation_top ul li a:visited {
    text-decoration: none;
    color: #333;
}


.login-form > input,
.login-btn,
.logout-btn {
    margin: 0 0.5rem;
}

.login-form > input,
.addpalz > input {
    height: 25px;
    width: 200px;
}

.like-btn {
    font-size: 45px;
    color: #ff167c;
}

.like-btn > * {
    cursor: pointer;
}

.add-btn {
    margin-top: 1rem;
}

.user-authentication {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.login-form {
    display: flex;
    align-items: flex-end;
}

.cards, .profilewrap, .addpalz-wrap, .register-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    width: 80%;
    padding: 1.5rem;
}

.cards {
    gap: 1.5rem;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 460px;
    align-items: center;
    background-color: white;
    padding: 1rem;
    width: 280px;
    transition: transform 0.5s ease;
}

.card-body {
    display: flex;
    flex-direction: column;
    align-items: space-between;
    height: 100%;
}

.card:hover {
    transform: scale(1.02);
}

.profile, .addpalz, .register-form {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 1rem;
    width: 900px;
    border: none;
}

.form-wrap {
    display:flex;
    flex-direction: column;
}

.SumoSelect > .CaptionCont > span.placeholder {
    color:white !important;
}

.profilepic > img {
    display: block;
    max-width: 200px;
    margin: 1rem;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #92eb4c;
    height: 100px;
}

.palz_img img {
    display: block;
    width: 200px;
    max-width: 200px;
    height: 200px;
    max-height: 200px;
    object-fit: cover;
    object-position: center;
}

.palz_likes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.section-wrapper {
    padding: 40px;
    height: 300px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0, 0, 0, 0.5)), url("../images/banner.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0% 62%;
}

.section-wrapper > * {
    color: white;
}

.hero-img > img {
    width: 64px;
    height: 64px;
    filter: contrast(90%);
}