* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: montserrat;
}

html,body {
    min-height: 100vh;
    height: 100%;
}

body {
    background-color: #000010;
    color: white;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

*::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

*::-webkit-scrollbar-track {
    background: #1100c859;
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
    background: #0040ff52;
    border-radius: 10px;
    transition: 0.3s;
}

*::-webkit-scrollbar-thumb:hover {
    background: #1600ff;
}

.menu {
    height: 65px;
    padding: 10px;
    background-color: #000010;
    border-bottom: dashed 1px rgb(58, 58, 58);
}

.menu .logo {
    margin-left: 20px;
}

a {
    text-decoration: none;
    color: rgb(0, 68, 255);
}

/* .main {
    min-height: calc(100% - 65px);
    height: calc(100% - 65px);
} */

.footer {
    /* text-align: center; */
    position: relative;
    color: rgb(97, 97, 97);
    background-color: #00000A;
    width: 100%;
    padding: 5px;
}

.footer .line {
    border-bottom: dashed 1px rgb(58, 58, 58);
    margin: 5px 0;
}

.main .noti {
    width: calc(100% - 20px);
    margin: 10px;
    padding: 10px;
    background-color: rgba(255, 0, 34, 0.1);
    border-radius: 15px;
}

.main .noti a {
    text-decoration: none;
    color: rgba(38, 0, 255, 1);
}