@font-face {
    font-family: 'TmonMonsori';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_two@1.0/TmonMonsori.woff')
    format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "TmonMonsori";
    height: 100%;
    overflow: auto;
    background-image: url("./img/retransmisje-banner.png");
    background-attachment: fixed;
    background-size: cover;
    animation: fadeIn 1.5s;
}

.loginPanel {
    width: 360px;
    height: 360px;
    opacity: 90%;
    background-color: #252525;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #252525;
    border-radius: 40px;
    box-shadow: 0px 0px 10px white;
    transform: translateY(75%);
}

#headerMain,
#headerSub {
    color: white;
    font-size: 24px;
}

#mainLogo {
    width: 85px;
    height: 60px;
    box-shadow: 0px 0px 10px black;
}

#imgPanel {
    width: 20px;
    height: 20px;
    transform: translateY(20%);
}

#inputPanelName,
#inputPanelPass {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 7.5px;
    margin-left: 30px;
}

#submitButton {
    border: 1px solid white;
    border-radius: 40px;
    padding: 5px;
    background-color: transparent;
    color: white;
}

@keyframes fadeIn {
    0% {opacity: 0%;}
    100% {opacity: 100%;}
}