*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
.body{
    height: 100vh;
    overflow-x: hidden;
    perspective: 10px;
}
.container{
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    z-index: -1;
}

.back{
    transform: translateZ(-80px) scale(10);
}
.front{
    transform: translateZ(-20px) scale(3.1);
}

.back,.front{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

h1{
    color: aqua;
    letter-spacing: 5px;
    text-shadow: 2px 2px 2px blue,3px 3px 3px orange;
}
.content{
    background-color: black;
    padding: 5rem 0;
}

h2{
    color:cyan;
    text-align: center;
}
.p{
    color: aliceblue;
    font-size: 30px;
}
#linkedin{
    color: aliceblue;
}
#linkedin:hover{
    color: black;
    background-color: white
}


#follow{
    height: 50px;
    width: 50px;
}

.bg{
    position: relative;
    width: 100%;
    height: 300px;
    background-attachment: fixed;
    
}


.bg1{
    background-image: url(parallax.png);
}
.bg2{
    background-image: url(inspiration.jpg);
}
.bg3{
    background-image: url(me.jpg);
}
table{
    background-color: white;
}