@font-face {
    font-family: dpad;
    src: url("font/dpad.otf");
}

* {
    padding: 0;
    margin: 0;
    font-family: dpad;
}

header {
    width: 100%;
    height: 80px;
    background-color: #E10600;
    color: white;
    border-bottom: 1px solid black;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-header {
    width: 60px;
    padding-right: 20px;
}

header a {
    text-decoration: none;
    color: white;
}

header li {
    list-style: none;
}

.header-left {
    font-size: 40px;
    margin-left: 40px;
}

.header-left a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 40px;
}

.menu {
    font-size: 17px;
    position: relative;
}

.menu-content {
    opacity: 0;
    position: absolute;
    color: black;
    transform: translateY(-10px);
    transition: all ease-in-out 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,2.3);
}

.menu-content li {
    background-color: #E10600;
    box-shadow: 0 2px 8px rgba(0,0,0,2.3);
    padding: 5px 20px;
}

.menu-content li:hover {
    background-color: #860400;
}

.menu:hover .menu-content, .menu:focus .menu-content {
    opacity: 100;
    transform: translateY(1px);
}

.header-right .menu-logo {
    width: 70px;
}

header .login-btn {
    padding: 10px;
    border: 1px solid black;
    background-color: #860400;
    color: white;
    text-transform: uppercase;
    border-radius: 5px;
    margin-right: 15px;
    font-size: 20px;
    box-shadow: 0 0 2px 1px black;
    transition: all ease-in-out 0.15s;
}

header .login-btn:hover {
    box-shadow: 0 0 8px 3px black;
}

main {
    background-color: #15151E;
}

.banner {
    width: 100%;
    height: 30vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.addBtn {
    opacity: 0;
    width: 100px;
}

.adminBanner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    outline: 1px solid transparent;
    transition: outline-color 0.15s ease-in-out;
}

.adminBanner:hover {
    outline-color: white;
    outline-offset: -2px;
}

.adminBanner:hover .addBtn {
    transition: all ease-in-out 0.15s;
    opacity: 1;
}

footer {
    border-top: 1px solid black;
    background-color: #E10600;
    width: 100%;
    height: 100px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}