*{
    margin: 0%;
    padding: 0%;
    font-family: 'Times New Roman', serif;
}

.banner{
    width: 100%;
    height: 100vh;
    background-image: url(joeexotictlo.jpg);
    background-size: cover;
    background-position: center;

}

.navbar {
    width: 85%;
    margin: auto;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 130px;
    cursor: pointer;
    margin-top: 10px;
}
.logo:hover{
    content: url(Logo2.png);
    transform: rotate(10deg);
}
.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 20px;
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    color:#C71585;
    text-transform: uppercase;
}

.navbar ul li::after {
    content: '';
    height: 3px;
    width: 0;
    background: #C71585;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}

.navbar ul li:hover::after {
    width: 100%;
}

.content{
    width: 1000px;
    position: relative;
    top: 20%;
    transform: translateY(-31%);
    text-align: center;
    color: #C71585;
    border-width: 5px;
    height: auto;
    border-style: solid;
    border-color: #C71585;
    margin:0 auto;
    padding: 10px;
    background-color: white;
    font-size: 17px;
    margin-bottom: 10px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
   
}
.content h1{
    font-size: 30px;
    margin-top: 10px;
}
.content p{
    margin: 20px auto;
    font-weight: 100;
    line-height: 25px;
}
