* {
    margin: 0px;
    padding: 0px;

}

body {
    background-color: #8FA3E4;
    background-image: url("../../img/image_1.png");
    
}
img{
    width: 300px;
}

header {
    background-color: #8F90E4;
    background-image: url("../../img/image_1.png");
    padding: 2px;
    margin-bottom: 10px;
    text-align: center;
    font-family: "Whisper", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 30px; 
}

header h1 {
    margin-bottom: 25px;
}

header nav {         
    display: inline-block;
    margin-right: 20px;
    padding: 5px;
    background-color: rgb(117, 184, 242);
    border-radius: 10px;
}

nav a {
    letter-spacing: 1px;
    color: black;
    text-decoration: none;
}

nav a:hover {
    color: white;
    bottom: 2px;
    position: relative;
}

header a:link{
    transition: color 0.5s;
}

#s3d{
    perspective: 1500px;
}

#platform {
    width: 200px;
    height: 350px;
    background-color: rgb(208, 208, 208);
    transform: translate(100px) rotateX(55deg) rotateZ(45deg);
    transform-style: preserve-3d;
    border-radius: 16px;
    box-shadow: 1px 2px 10px rgba(56, 56, 56, 0.95),
     24px 34px 24px rgba(91, 91, 91, 0.5);
    transition: 0.5s ease-in-out transform, 0.5s ease-in-out box-shadow;
}

#platform:hover{
    transform: translateX(100px) translateY(-24px) rotateX(55deg) rotateZ(45deg);
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.95),
     70px 70px 24px rgba(54, 53, 53, 0.15);
}

#platform p{
    width: 350px;
    transform-style: preserve-3d;    
    transform:translateX(-50px) translateY(100px) translateZ(40px) rotateX(-90deg) rotateY(90deg);
    opacity: 0;
    transition: 0.4s ease-in-out opacity;
}

#platform:hover p{
    opacity: 0.9;
    text-shadow: 2px 6px 6px rgba(32, 32, 32, 0.5);
}