body {
    background: #E0F5FF;
}
h1 {
    text-align: center;
    font-size: 2.5em;
}
#app {
    position: relative;
}
#logo-header {
    text-align: center;
    width: 100%;
}
#logo-header img {
    width: 30%;
}
#main-body {
    color: rgb(41, 41, 41);
    font-family: 'Nunito';
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .15);
    border-radius: 15px;
    padding: 40px;
    background: #A8DFF7;
    min-height: 1400px;
}
.question {
    margin-bottom: 100px;
    font-weight: bold;
    font-size: 1.3em;
}
.answers {
    text-align: center;
}
.answers label {
    margin-right: 10px;
}
button {
    padding: 10px 70px;
    margin-top: 20px;
    font-size: 1em;
    font-family: 'Nunito';
    border-radius: 100px;
    cursor: pointer;
}
.page {
    margin-top: 100px;
}
.agree, .disagree {
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.agree {
    color: rgb(51, 164, 116);
}
.disagree {
    color: rgb(136, 97, 154);
}
#song-jacket-result {
    height: 300px;
    width: 300px;
    margin: 0 auto;
    display: block;
    border: 10px solid black;
}
#nav-div {
    display: flex;
    justify-content: space-between;
}
.song-name-in-desc {
    font-weight: bold;
}
#share {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#waiting-text {
    font-size: 24px;
    text-align: center;
}
#waiting {

}
#result {
    font-size: 1.4em;
}
#result h1 {
    margin-top: 0px;
}

.fadeable{
    opacity:0;
    transition: opacity 0.4s ease;
    position:absolute;
    width:100%;
}

.fadeable-show{
    opacity:1;
}

.fadeable-hide{
    pointer-events:none;
}

#postBtn{
    background:black;
    color:white;
    border:none;
    padding:10px 16px;
    border-radius:999px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
}

#postBtn:hover{
    background:#222;
}

.xLogo{
    font-size:18px;
}

/*
 *   ==== Spinners ====
 */
 
/* spinners from: https://www.w3schools.com/howto/howto_css_loader.asp */

.div-spinner {
    border: 2px solid #ddd; /* Light grey */
    border-top: 2px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 26px;
    height: 26px;
    animation: spin 1s linear infinite;
	margin: 0 auto;
}

.div-spinner-small {
    border: 2px solid #ddd; /* Light grey */
    border-top: 2px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 12px;
    height: 12px;
    animation: spin 1s linear infinite;
	margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }

}
