*{
    box-sizing: border-box;
    overflow-x: hidden;}


body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #222222;
    text-align: center;
}


.container {
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;

}


.title {
    font-size: 50px;
    margin-top: 50px;
    margin-bottom: 10px;
    color: #fda400;
    font-weight: bold;
    text-transform: uppercase;
}


.bio {
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto 20px auto;
    max-width: 1000px;%;

    left: 0px;
    right: 0px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
.bio img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.desc {
    width: 100%;
    margin: 0 auto 20px auto;
    font-size: 14px;
    line-height: 1.4;
    max-width: 90%;
    color: #ffffff;
}


.stars {
    font-size: 30px;
    color: orange;
    margin-bottom: 20px;
}

.pin{
    font-size: 20px;
}

.address {
    font-size: 0.95rem;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 80px;
}



.nav {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;

    background: linear-gradient(to top, #181818 0%, #3d3d3d 100%);

    justify-content: space-evenly;
    padding: 22px;
    font-size: 30px;
    z-index: 9999;
}