 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(105, 125, 242);
}

header {
    text-align: center;
    background-color: rgb(23, 23, 116);
    display: flex;
    flex-direction: row;
    justify-content: center;
}

header h2 {
    color:aliceblue ;
    margin-top: 6px;
    font-family: "Science Gothic", sans-serif;
}

header div {
    margin-left: 40px;
}
h1 {
    padding: 10px;
    color: aliceblue;
    font-size: 40px;
    font-family: "Science Gothic", sans-serif;
}

#placeForNodes {
    width: 100%;
    height: 100%; 
}

#generalInfo {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: white;
    border-top: 3px solid rgb(23, 23, 116);
    z-index: 10;
    text-align: center;
    height: 600px;
}

#generalInfo.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

#generalInfo img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
}

#generalInfo h2,h3 {
    font-family: "Science Gothic", sans-serif;
    color: rgb(58, 87, 233);
}

#generalInfo p {
    font-size: 20px;
    width: 600px;
     font-family: "Oswald", sans-serif;
}

#generalInfo li {
     font-size: 18px;
     color: rgb(26, 34, 79);
      font-family: "Oswald", sans-serif;
}

#cInfo {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: white;
    border-top: 3px solid rgb(23, 23, 116);
    z-index: 10;
    text-align: center;
    height: 400px;
    font-family: "Science Gothic", sans-serif;
    color: rgb(58, 87, 233);
}

#cInfo.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

#cInfo a {
    text-decoration: none;
    font-family: "Science Gothic", sans-serif;
    border: 3px dotted rgb(58, 87, 233);
    border-radius: 10px;
    padding: 7px;
    font-size: 20px;
    color: rgb(105, 125, 242);
    cursor: pointer;
}

#fInfo {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: white;
    border-top: 3px solid rgb(23, 23, 116);
    z-index: 10;
    text-align: center;
    height: 400px;
    font-family: "Science Gothic", sans-serif;
    color: rgb(58, 87, 233);
}

#fInfo.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

#fInfo a {
    text-decoration: none;
    font-family: "Science Gothic", sans-serif;
    border: 3px dotted rgb(58, 87, 233);
    border-radius: 10px;
    padding: 7px;
    font-size: 20px;
    color: rgb(105, 125, 242);
    cursor: pointer;
}

#dInfo {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: white;
    border-top: 3px solid rgb(23, 23, 116);
    z-index: 10;
    text-align: center;
    height: 400px;
    font-family: "Science Gothic", sans-serif;
    color: rgb(58, 87, 233);
}

#dInfo.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

#dInfo a {
    text-decoration: none;
    font-family: "Science Gothic", sans-serif;
    border: 3px dotted rgb(58, 87, 233);
    border-radius: 10px;
    padding: 7px;
    font-size: 20px;
    color: rgb(105, 125, 242);
    cursor: pointer;
}

