
@import url('https://fonts.googleapis.com/css2?family=DotGothic16&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    height: 100%;
    background-color: black;
}

#nav {
    padding-top: 40px;
    font-family: DotGothic16;
    position: absolute;
    margin: auto;
    width: 100%;
    height: 150px;
    background-color:black;
    text-align: center;
    filter: drop-shadow(0px -20px 50px #c0c0c0);
}

#nav a, a:visited {
    width: 100%;
    color: white;
    text-decoration: none;
    font-size: 50pt;

}

#logo {
    margin: auto;
}

#nav_container {
    width: 200px;
    height: auto;

}
#page {
    width: 75%;
    height: 740px;
    margin: auto;
    background-color: black;
}

#logo {
    font-family: ;
}

#group1 {
    margin: auto;
    position: absolute;
    top: 260px;
    width: 75%;
    height: 220px;
    background-color: #c0c0c0;
}

#group2 {
    margin: auto;
    position: absolute;
    top: 490px;
    width: 75%;
    height: 220px;
    background-color: #c0c0c0;
}

.draggable {
    padding: 10px;
    width: 200px;
    height: auto;
    border-radius: 10px;
    cursor: move;
}

.draggable.dragging {
    opacity: .5;
}

#footer {
    position: absolute;
    width: 100%;
    height: 90px;
    background-color: black;
    text-align: center;
    padding-top: 80px
}

#footer a, a:visited, a:hover, a:link {
    color: black;
    text-decoration: none;
    cursor: default;
}