@font-face {
    font-family: "STOR";
    src: url("http://mazapandust.com/fonts/STOR-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/*main page nav hover*/
nav ul li:hover a,
nav ul li:hover .frame button {
    background-color: #000;
    color: #fff;
}

nav ul li:hover .frame button {
    background-color: #f9f9f9;
    color: #333;
    box-shadow: inset -2px -2px 5px #fff, inset 2px 2px 5px #aaa;
    border-color: #999;
}

/*button styles*/
/*(i did not write the majority of this; only reshaped them to my liking. full credit to yuhomyan on codepen.io: button #6 at https://codepen.io/yuhomyan/pen/jOqvjZq*/
.frame, .enter {
    margin-left: 10px;
}

.enter {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    width: 100%;
    opacity: 1;
}

button {
    font-family: "STOR", sans-serif;
    padding: 10px 20px;
    background-color: #e0e0e0;
    color: #000;
    border: 2px solid #c0c0c0;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: inset -2px -2px 0px #ffffff, inset 2px 2px 0px #808080;
    cursor: pointer;
    position: relative;
}


button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e0e0e0;
    border-radius: 20px;
    z-index: -1;
}

button:active {
    box-shadow: inset 2px 2px 0px #ffffff, inset -2px -2px 0px #808080;
    background-color: #c0c0c0;
}

.enter-btn {
    font-family: "STOR", sans-serif;
    width: 200px;
    height: 60px;
    font-size: 18px;
    padding: 15px 30px;
    color: #000;
    border-radius: 30px;
    background-color: #e0e0e0;
    background: linear-gradient(
        top,
        #e0e0e0 0%,
        #e6e6e6 25%,
        #ffffff 38%,
        #c5c5c5 63%,
        #f7f7f7 87%,
        #e0e0e0 100%
    );
    cursor: pointer;
    display: inline-block;
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 1), 0px 1px 3px rgba(0, 0, 0, 0.3);
    outline: none;
    border: 1px solid #ba6;
    transition: background-color 0.3s, color 0.3s;
    opacity: 1;
}

.enter-btn:active {
    box-shadow: inset 2px 2px 0px #ffffff, inset -2px -2px 0px #808080;
    background-color: #c0c0c0;
    color: #000;
}

a .enter button {
    background-color: #e0e0e0;
    opacity: 1;
    color: #e0e0e0;
    border: none;
    padding: 0;
    font: inherit;
}

.enter-btn:hover {
    background-color: #e0e0e0;
    background: linear-gradient(
        top,
        #e0e0e0 0%,
        #e6e6e6 25%,
        #ffffff 38%,
        #c5c5c5 63%,
        #f7f7f7 87%,
        #e0e0e0 100%
    );
    color: #000;
}

.custom-btn {
    width: 5px;
    height: 40px;
    color: #000;
    border-radius: 25px;
    padding: 10px 25px;
    cursor: pointer;
    display: inline-block;
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 1), 0px 1px 3px rgba(0, 0, 0, 0.3);
    outline: none;
    border: 1px solid #ba6;
}


.btn-6 {
    border-color: #7c7c7c;
    background: linear-gradient(
        top,
        rgba(38, 38, 38, 0.8),
        #e6e6e6 25%,
        #ffffff 38%,
        #c5c5c5 63%,
        #f7f7f7 87%,
        rgba(38, 38, 38, 0.8)
    );
    background: -webkit-linear-gradient(
        top,
        rgba(38, 38, 38, 0.5),
        #e6e6e6 25%,
        #ffffff 38%,
        rgba(0, 0, 0, 0.25) 63%,
        #e6e6e6 87%,
        rgba(38, 38, 38, 0.4)
    );
}

a .frame button {
    cursor: pointer;
    background-color: inherit;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
}

a .frame, .enter button:hover {
    background-color: #000;
    color: #fff;
    opacity: 1;
}

.enter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e0e0e0;
    border-radius: 30px;
    z-index: -1;
}

form button[type="submit"] {
    font-family: "STOR", sans-serif;
    padding: 10px 20px;
    background-color: #e0e0e0;
    color: #000;
    border: 2px solid #c0c0c0;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: inset -2px -2px 0px #ffffff, inset 2px 2px 0px #808080;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
}

form button[type="submit"]:hover {
    background-color: #000;
    color: #fff;
}


form button[type="submit"]:active {
    box-shadow: inset 2px 2px 0px #ffffff, inset -2px -2px 0px #808080;
    background-color: #c0c0c0;
}


/*mobile*/
@media (max-width: 768px) {
    .enter-btn {
        width: 150px;
        height: 40px;
        font-size: 14px;
        padding: 10px 20px;
    }
}


