body{ 
    margin: 0;
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
}

.title{
    font-family: 'Freemono', monospace;
}

.forward{
    position: fixed;
    width: 100%;
    height: 100%;
    box-shadow: inset 40% 30% 70% -30% rgba(60, 220, 210, 0.08),
                inset -40% 0px 70% -30% rgba(60, 220, 210, 0.08);
    z-index: 0;
    pointer-events: none;
}

/*topbar*/
.bar{
    display: flex;
    flex-direction: row;
    gap: 0.5%;
    position: fixed;
    top: 3%;
    width: 60%;
    height: 7%;
    z-index: 100;
    pointer-events: auto;
}

/*buttons structure*/
.info, .contacts{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28.5%;
    height: 100%;
    border-style: solid;
    border-width: 0.4vh;
    border-radius: 1vh;
    border-color: white;
    background-color: rgba(0, 0, 0, 0.75);
    transform: skew(-10deg);
    box-shadow: 0px 0px 8px 4px rgba(60, 220, 210, 0.5);
}

/*buttons text to skew back*/
text, span {
    transform: skew(10deg);
    color:white;
    font-size: 150%;
    font-family: 'Freemono', monospace;
    font-weight: bold;
    text-decoration: none;
}

/*link look*/
a:link, a:visited, a:hover, a:active{
    text-decoration: none;
    color:white;
}

.info:hover, .contacts:hover{
    transform: scale(1.03) skew(-10deg);
    transition: transform 0.55s ease;
    margin-left: 0.8%;
    margin-right: 0.8%;
    border-width: 0.6%;
    box-shadow: 0px 0px 10px 5px rgba(100, 0, 190, 0.5);
}

/*logo*/
.buttonlogo{
    width: 13%;
    height: 140%;
    transform: skew(-10deg);
    border-style: solid;
    border-width: 0.4vh;
    border-radius: 1vh;
    border-color: white;
    background-color: rgba(0, 0, 0, 0.75);
    transform: skew(-10deg);
    box-shadow: 0px 0px 8px 4px rgba(60, 220, 210, 0.5);
}

.logo{
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    transform: scaleX(1.2) skew(-1deg);
    object-fit: contain;
    z-index: 1;
    filter: drop-shadow(0.2% 0.2% 0.4% rgba(255, 255, 255, 0.4));
}

.buttonlogo:hover{
    transform: scale(1.03) skew(-10deg);
    transition: transform 0.55s ease;
    margin-left: 0.8%;
    margin-right: 0.8%;
    border-width: 0.6%;
    box-shadow: 0px 0px 10px 5px rgba(100, 0, 190, 0.5);
}


/*planets*/
.planets{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 28.5%;
    height: 100%;
    border-style: solid;
    border-width: 0.4vh;
    border-radius: 1vh;
    border-color: white;
    background-color: rgba(0, 0, 0, 0.75);
    transform: skew(-10deg);
    box-shadow: 0px 0px 8px 4px rgba(60, 220, 210, 0.5);
}

.planets:hover {
    transform: scale(1.03) skew(-10deg);
    transition: transform 0.55s ease;
    margin-left: 0.8%;
    margin-right: 0.8%;
    border-width: 0.6%;
    box-shadow: 0px 0px 10px 5px rgba(100, 0, 190, 0.5);
}

.planets:hover .dropdown {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.dropdown {
    display: none;
    position: relative;
    color: white;
    width: 100%;
}

.planets text{
    position: fixed;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 66%;
    width: 100%;
    gap: 5%;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: white;
    padding: 2% 0;
    text-decoration: none;
    font-size: 140%;
    font-family: 'Freemono', monospace;
    border-style: solid;
    border-width: 0.4vh;
    border-radius: 1vh;
    border-color: white;
    background-color: rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 4px 2px rgba(60, 220, 210, 0.5);
}

.main:hover{
    transform: scale(1.03);
    transition: transform 0.55s ease;
    margin-left: 0.8%;
    margin-right: 0.8%;
    border-width: 0.6%;
    box-shadow: 0px 0px 10px 5px rgba(100, 0, 190, 0.5);
}



/*help button*/
.help {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Freemono', monospace;
    font-weight: bold;
    font-size: 110%;
    color: white;
    border-style: solid;
    border-width: 0.4%;
    border-color: white;
    background-color: rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 8px 4px rgba(60, 220, 210, 0.5);
}

.help{
    top: 3%;
    right: 4%;
    width: 4vh;
    height: 4vh;
    border-radius: 100%;
}


.help-div{
    display: none;
    position: fixed;
    top: 15%;
    justify-self: center;
    color: white;
    width: 60%;
    height: 68%;
    border-style: solid;
    border-width: 0.4%;
    border-radius: 1vh;
    border-color: white;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0px 0px 8px 4px rgba(60, 220, 210, 0.5);
    z-index: 20;
}

.close-help {
    position: relative;
    align-self: end;
    width: 4vh;
    height: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 110%;
    font-family: 'Freemono', monospace;
    font-weight: bold;
    color: white;
    border-style: solid;
    border-width: 0.4%;
    border-radius: 100%;
    border-color: white;
    background-color: rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 8px 4px rgba(60, 220, 210, 0.5);
}

.help-content{
    align-self: center;
    text-align: center;
    font-size: 100%;
}

.help-div:target {
    display: flex;
    flex-direction: column;
    padding: 0.7%;
}




.name-planet, .usage {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18%;
    height: 6%;
    font-family: 'Freemono', monospace;
    font-weight: bold;
    font-size: 160%;
    z-index: 1;
    color: white;
    background-color: rgba(128, 128, 128, 0.35);
    box-shadow: 0px 0px 6px 4px rgba(255, 255, 255, 0.25);
}

.name-planet {
    right: 4%;
    bottom: 5%;
}

.usage {
    left: 4%;
    bottom: 5%;
}







/*threejs map*/
.map {
    position: absolute;
    top: 0;
    left: 0;
}

