body{
    
    background-color: rgb(0, 0, 0);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../images/inksplatter.jpg);
    
}

.title-details{
    padding-left: 5px;
    margin: 0;
    color: rgb(96, 89, 89);
    position: fixed;
    
    overflow: hidden;
    z-index: 1;
    height: 25px;
    position: fixed;
    bottom: 0;
    width: 100%; 
    font-size: 20px;
}

div.start{
    background-color: rgb(0, 0, 0);
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.start img {
    border: solid #cecece;
    box-shadow: rgb(217, 217, 217) 0px 0px 100px; 
    width: 50vh; 
    border-radius: 20px;
    height: auto;
    filter: brightness(90%);
    z-index: 2;
    
}

.hovered div.start {
    background-color: rgba(0, 0, 0, 0.698);
    
}

.hovered img {
    box-shadow: rgb(255, 255, 255) 0px 0px 200px;
    width: 52vh;
    
}

.ease div.start{
    transition: background-color 0.8s ease;
}


.ease img {
    transition: box-shadow 0.6s ease;
    transition: width 0.8s ease;
}

