* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-image: url("/assets/bg.jpg");
    background-repeat: repeat;
    background-size: 100%
}

#card {
    width: 300px; 
    display: flex;
    height: 30vh; 
    background-color: rgb(245, 244, 229);
    box-shadow: 20px 21px 12px -7px rgba(0, 0, 0, 0.1);
    position: relative;
}
#em{
    height: 60%;
    width: auto;
    border-radius: 20px;
    padding: 10px;
    object-fit: cover;
    transform: rotate(12deg);
}
#em2{
    position: absolute;
    height: 60%;
    width: auto;
    border-radius: 20px;
    padding: 10px;
    object-fit: cover;
    transform: rotate(-10deg);
    right: 0;
    bottom: 0;
}
#content{
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    background-color: rgb(245, 238, 230);
}
#image{
    width: 50%;
    height: 100%;
    position: relative;
}

#wish{
    text-align: center;
    height: 100%;
    width: 100%;
    opacity: 1;
}
h3{
    margin-top: 10%;
    font-family: "Teko", sans-serif;
    color: rgb(231, 75, 75);
}
h2{
    color: rgb(39, 207, 151);
    font-family: "Teko", sans-serif;

}
p,span{
    padding: 5px;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 10px;
    font-style: normal;
  }
#read-more{
    font-size: 9px;
    position: absolute;
    right: 0;
    bottom: 0;
    margin-bottom: 5px;

}
#before{
    position: absolute;
    left:0;
    bottom: 0;
    font-size: 9px;
    margin-bottom: 5px;
    display: none;
}

#preloader {
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#4d9ab0; /* change if the mask should have another color then white */
    z-index:9999999; /* makes sure it stays on top */
    }
    
    .spinner {
    position:absolute;
    left:50%; /* centers the loading animation horizontally one the screen */
    top:50%; /* centers the loading animation vertically one the screen */
    width: 50px;
    height: 30px;
    text-align: center;
    font-size: 10px;
    margin-left:-25px;
    }
    
    .spinner > div {
    background-color: rgb(223, 246, 249);
    height: 100%;
    width: 6px;
    display: inline-block; 
    -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
    animation: stretchdelay 1.2s infinite ease-in-out;
    }
    
    .spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
    
    
    }
    
    .spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
    }
    
    .spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
    }
    .spinner .rect5 {
        -webkit-animation-delay: -0.8s;
        animation-delay: -0.8s;
        }
        
        @-webkit-keyframes stretchdelay {
        0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
        20% { -webkit-transform: scaleY(1.0) }
        }
        
        @keyframes stretchdelay {
        0%, 40%, 100% { 
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
        }  20% { 
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
        }
        }