*{
    margin: 0px;
    padding: 0px;
    
}

body{
    background-color: rgb(35, 34, 34);
}

.nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

.nav li {
    float: right;
}

.nav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 30px 16px;
    text-decoration: none;
}

.nav li a:hover {
    background-color: darkgoldenrod;
}

.nav{
    margin-bottom: 0px;
    width: 100%;
}

.header {
    width: 100%;
    height: 90vh;
    background-image: url('pinner1/1.png');
    background-repeat: no-repeat;
    background-size: cover;
    
   
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;;
}

.header h2{
    color: aliceblue;
    background-color: #333;
    padding: 20px 20px;
    border-radius: 20px;
    text-align: center;
}

.info{
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: flex-start;
}


.info .left, .info .right{
    width: 50%;
    padding: 20px 20px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: aliceblue;

}

.info .right{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.right .card {
    padding: 10px 0px;
}

.right .card p{
    color: darkgoldenrod;
}

.info .left img{
    height: 55vh;
    width: auto;
}

.more-prop{
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 100px;
}
.flip-card {
    background-color: transparent;
    width: 300px;
    height: 300px;
    
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
}


/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: darkgoldenrod;
    color: black;
    
}

.flip-card-front h2{
    position: relative;
    bottom: 10%;
    text-align: center;
    vertical-align: middle; 
    color: aliceblue;
    background-color: #333;
    padding: 10px 0px;
    border-radius: 20px;
    width: 100%;
    
}

/* Style the back side */
.flip-card-back {
    background-color: darkgoldenrod;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer{
    width: 100%;
    height: 300px;
    background-color: #333
}

.name-cont{
    width: 100%;
    color: aliceblue;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: xx-large;
    font-weight: 1000;
    margin-top: 1px;
}

.det-cont{
    width: 100%;
    height: 150px;
    display: flex;
    align-items: flex-start;
}

.details{
    width: 50%;
    height: 150px;
}

.details p, .details a{
    color: aliceblue;
    font-size: larger;
}

.details a{
    text-decoration: none;
    padding-left: 30px;
    
    display: block;
    float: left;
    clear: left;
    padding-bottom: 10px;
}

.details p{
    padding-left: 10px;
}

.details i{
    color: darkgoldenrod;
    width: 500px;
    display: flex;
    align-items: flex-start;
    padding-left: 30px;
}

.details i p{
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; 
    font-weight: 100;
    position: relative;
    top: -2px;
}

.social-cont{
    width: 100%;
    height: 40px;
    display: flex;

    align-items: center;
    justify-items: center;
    
}

.socials {
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.socials a{
    font-size: x-large;
    padding-left: 25px;
    color: darkgoldenrod;
}
