﻿@import url('https://fonts.googleapis.com/css?family=Quicksand');

* {
    font-family: 'Quicksand', sans-serif;
}

html {
    height: 100%;
    margin: 0px;
}

body {
    min-height: 100%;
    margin: 0px;
    background: #d9e9f1;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: white;
}

background-sea {
}

a {
    color: orange;
}

a:hover {
    color: lightsalmon;
}

.max-width-div {
    display:inline-block;
    max-width:400px;
}


.section {
    background-color: rgba(80,120,170,0.4);
    text-align: left;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: solid 1px rgba(80,120,170,1);
}

.padded {
    padding: 20px;
}



.drag-and-drop {
    text-align:center;
    display: inline-block;
    padding: 30px 0px;
    border: dashed 3px white;
    cursor: pointer;
    background-color: rgba(192,192,255,0.2);
}

.drag-and-drop:hover {
    background-color: rgba(192,192,255,0.3);
}

.drag-and-drop-hover {
    background-color: rgba(192,192,255,0.3);
}

.error-message {
    padding-top: 30px;
    color: orange;
}

.warning {
    padding: 10px 0px;
    color: yellow;
}

.cover-img {
    border-left: 3px solid #2b2f4a;
    borsder-bottom: 5px solid #2b2f4a;
    dbox-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    box-shadow: 0 3px 6px rgba(0,0,0,0.36), 0 3px 6px rgba(0,0,0,0.53);
    transition: transform 1s ease;
}
    
.cover-img:hover {
    transform: rotate(-2deg) scale(1.02);
}


.cover-description {
    bforder-left: 5px solid #2b2f4a;
    box-shadaow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    transition: transform 1s ease;
    padding: 10px;
    background: rgba(255,255,255,0.8);
}