/* Футер прижат к низу */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    font-style: normal;
}

main {
    flex: 1 0 auto; /* растягиваем основной контент */
}

footer {
    flex-shrink: 0; /* футер не сжимается */
    background-color: #f8f9fa;
    padding: 15px 0;
}

.container {
    width: 80%;
    margin: 0 auto 3em auto;
}

.nocopy {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.title_course {
    text-transform: uppercase !important;
    font-weight: bold !important;
}


.user-email {
    margin: 6px;
    font-weight: 700;
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.2s ease;
}

.user-email:hover {
    color: #0a58ca;
    text-decoration: underline;
}
