*{
    margin:0;
    padding:0;
    
}
body{
     /* background: #333D29;
     background:linear-gradient(
        to right,
        #F9F6F1,
        beige,
        #C2C5AA
     ) */

}
#scrollspyProjects{
    padding-top: 75px;
    padding-bottom: 100px;
    
}
#scrollspyContactMe{
    padding: 50px; 
    background-color: #333D29;
    opacity: .75;  
    color: white;
    margin-bottom: 50px;
    border-radius:25px;
    box-shadow: 3px 3px black;

}
#h1projects{
    padding-bottom: 60px;
    text-align: center;
    font-size: 3.7rem;
}
#h2contact{
    padding-bottom: 20px;
    font-size: 3.7rem;
    color: white;
}
.flip-card-container{
    width: 350px;
    height: 350px;
    perspective: 1000px;
 }
.flip-card{
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    transition: transform 1s;
    transform-style: preserve-3d; 
}
.flip-card-container:hover .flip-card{
    transform: rotateY(-180deg);
}
.flip-card-front, .flip-card-back{
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    border-radius: 200px;
    box-shadow: 4px 4px lightgray;
}
.flip-card-front{
    background-color:black;
    color: whitesmoke;
}
.flip-card-back{
    background-color: lightgray;
    color: black;
    transform: rotateY(180deg);
    word-wrap: break-word;
    font-size: 100%;
    padding: 15%;
}
#submit-button{
    background-color: black;
    border-color: black;
}
#about-me {
    display: flex;
    justify-content: left;
    margin-top: -3em;
    background-color: beige;
    opacity: .97;
    border-radius:25px;
    box-shadow: 3px 3px black;
    color: black;
    height: 500px;
}
#about-me-inner {
    padding: 5%;
    animation: Slide_Left 1.4s ease;
}
#about-me-inner > h1{
    font-size: 4rem;
    color: black;
}
#about-me-inner > a{
    color: black; 
}
@keyframes Slide_Left {
    0%{
        transform:translate(250px)
    }
    100%{
        transform: translate(0);
    }
    
}
.box {
    width: 500px;
    height: 400px;
    background: black;
    position: relative;
    top: 40px;
    left: -35px;
}
.shape {
    width: 600px;
    height: 600px;
    background: #656D4A;
    border-radius: 50%;
    position: absolute;
    left: 50px;
    top: 50px;
    overflow: hidden;
}
#top-left {
    width: 300px;
    height: 300px;
    position: absolute;
    top: 1px;
    left:2px;
    border-top-left-radius: 300px;
    position: relative;
    left: -300px;
}
#contact-me{
    padding: 10%;
    z-index: auto;
}
