body {
    margin: 0;
}



/* Header */

/* Header_FlexBox */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu {
    list-style: none;
}

a{
    text-decoration: none;
    color: rgb(100, 100, 100);
    padding: 0 10px;
}

a:hover {
    color: #14BBB0 ;
}

li{
    display: inline;
}

#login a :hover{
    background-color: #14BBB0;
    border-radius: 10px;
}

.profile_logo {
    width: 30px;
    padding: 0.5rem;
    margin: 0;
}


/* Hero */

/* HeroFlexBox */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* HeroImage */
.hero_image {
    width: 100%;
    height: 100vh;
    background-image: url(../Images/Hero_Image.png);
    background-size: cover;
}

/* Hero_Text */
.body1 {
    width: 70%;
    margin: 0;
    padding-bottom: 1rem;
}


/* Featured section */
.hero2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Featured_Image */
.hero_image2 {
    width: 100%;
    height: 100vh;
    background-image: url(../Images/Hero_Image_2.png);
}


/* Review Section */

.user_name{
    padding: 10px 10px;
    margin: 0;
    color: white;
}

.profile-img{
    width: 30px;
    height: 30px;
}

.profile {
    display: flex;
    align-items: center;
}

.body2 {
    padding-right: 2rem;
    color: white;
}

.reviews {
    display: flex;
    margin: 0 1rem;
}

h2 {
    text-align: center;
    margin-bottom: 2rem;
}

#review_box {
    display: flex;
    background-color: black;
    margin-bottom: 1px;
    padding: 1rem 0;
}

.review_title {
    margin-bottom: 1rem;
    padding: 0;
}


/* footer */

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
}

.socialmedia {
    padding: 1rem;
    margin: 0;
}

.socialmedia_logo {
    width: 30px;
    margin: 0;
    padding: 1rem;
}

.socialmedia a {
    margin: 0;
    padding: 0;
}

.socialmedia a :hover{
    background-color: #14BBB0;
    border-radius: 10px;
}

.footer_text {
    color: white;
    margin-top: 0;
    padding-top: 0;
}