@charset "utf-8";
:root {
    --planetsTop: 500px;
    --sunTop: 460px;
}

* {
    margin: 0;
    padding: 0;
}

body {
    background-image: url(../pics/Galaxien_Hubble.jpg);
    background-attachment: fixed;
    background-size: cover;
}

a {
    outline: none;
    text-decoration: none;
    color: rgb(67, 224, 245);
    font-size: 0.95em;
    font-weight: bold;
}

a:hover {
    color: #f74c4c;
}

#wrapper {
    position: relative;
    font-family: Verdana, Arial, sans-serif;
    margin: 20px auto 10px auto;
    max-width: 1000px;
    text-align: center;
    line-height: 1.4em;
    background-color: rgba(255, 255, 255, 0.25);
    padding: 30px 0 30px 0;
    border-radius: 45px;
}

#wrapper_aus {
    position: absolute;
    top: 20px;
    right: 20px;
    border: 1px solid #aaa;
    color: #aaa;
    cursor: pointer;
}

.comment {
    color: #fff;
}

#hier {
    border: 1px solid #8dd7f5;
    border-radius: 0.4em;
    padding: 2px 4px 2px 4px;
}

#fotos {
    width: 2184px;
}

#fotos img {
    width: 0;
    cursor: pointer;
}

#sonne {
    position: absolute;
    top: var(--sunTop);
    left: 40%;
    z-index: -10;
}

#sonne2 {
    position: absolute;
    top: var(--sunTop);
    left: 40%;
    z-index: -2;
}

#sonne2 img {
    width: 13%;
    height: 13%;
    opacity: 0;
}

#erde {
    position: absolute;
    top: var(--planetsTop);
    left: 80%;
    z-index: -1;
}

#orgel {
    position: absolute;
    top: var(--planetsTop);
    left: 36%;
    z-index: -1;
}

#venus {
    position: absolute;
    top: var(--planetsTop);
    left: 60%;
    z-index: -3;
}

#merkur {
    position: absolute;
    top: var(--planetsTop);
    left: 60%;
    z-index: -4;
}

#venus_title,
#merkur_title,
#orgel_title,
#earth_title {
    opacity: 0;
    font-family: Verdana, Arial, sans-serif;
    color: white;
    font-size: 0.9em;
    margin-left: 12px;
}

#debug {
    position: fixed;
    top: 0;
    left: 0;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
}

@media (max-width: 920px) {
    #fotos {
        position: absolute;
        top: 20px;
        left: 0;
        background-color: rgba(0, 0, 0, 0.66);
        z-index: 1;
    }
    #wrapper {
        margin: 20px auto 0px auto;
        line-height: 1.2em;
        font-size: 0.9em;
        padding: 10px 0 10px 0;
        border-radius: 25px;
    }    
}