@font-face{
    src: url(/fonts/PoetsenOne-Regular.ttf);
    font-family: Poetsen One;
}
@font-face{
    src: url(/fonts/DMSerifDisplay-Regular.ttf);
    font-family: serif-regular;
}
@font-face{
    src: url(/fonts/DMSerifDisplay-Italic.ttf);
    font-family: serif-italic;
}
body{
    font-family: monospace;
    font-weight: bold;
    background-color: slategray;
}
.dropdown{
    display: inline;
    width: fit-content;
}
.dropdown button{
    border-radius: 6px;
}
.dropdown a{
    display: block;
    text-decoration: none;
    padding: 5px;
}
.dropdown button:hover{
    cursor: pointer;
}
.dropdown .content{
    display: none;
    background-color: hsl(0, 0%, 50%);
    position: absolute;
    text-align: center;
    width: 150px;
    box-shadow: 26px 26px 56px rgb(0, 255, 255);
}
.dropdown:hover .content{
    display: block;
    border-radius: 10px;
}
.counterButtons{
    margin-left: auto;
    width: 100%;
}
#counterDisplay{
    font-size: 3rem;
    margin-left: auto;
    width: 50%;
}
#addonebtn{
    background-color: cyan;
}
#resetbtn{
    background-color: yellow;
}
#subtractonebtn{
    background-color: red;
}
a{
    color: rgb(0, 110, 255);
}
a:hover{
    font-size: 1.1rem;
    color: hsl(214, 100%, 75%);
}
::selection{
    color: rgb(47, 255, 47);
    background-color: black;
}