@import "https://www.nerdfonts.com/assets/css/webfont.css";

html {
    background-color: #222222;
}

.header {
    position: absolute;
    transform: translate(-50%);
    left: 50%;
}

.body {
    position: absolute;
    transform: translate(-50%);
    left: 50%;
    top: 50%;
    width: 80%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.body h1 {
    position: absolute;
    top: -2.5rem;
    font: 2rem "Fira Sans", sans-serif;
    color: #cccccc;
}

.wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: inline-block;
}

.dropdown {
    position: relative;
    top: 30%;
    left: -25%;
    transform: translate(0, -50%);
    background-color: #00FF40;
    width: 50%;
    height: 25%;
    display: inline-block;
}

.download {
    color: #ffffff;
    text-shadow: 0px 0px 3px black;
    font: 1.5rem "Fira Sans", sans-serif;
}

.dropbtn {
    padding: 5%;
    border: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    max-height: 230%;
    overflow: scroll;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font: 1.5rem "Fira Sans", sans-serif;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropdown {background-color: #3e8e41;}