@font-face {
    font-family: NotoKufiArabic;
    src: url(../../assets/fonts/NotoKufiArabic.woff);
    font-weight: normal;
}
@font-face {
    font-family: NotoKufiArabic;
    src: url(../../assets/fonts/NotoKufiArabic-Bold.woff);
    font-weight: bold;
}

body {
    font-family: Roboto, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    color: #72777a;
    line-height: 1.5;
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased;

    width: 100wh;
    height: 90vh;

    background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
    background-size: 400% 400%;
    -webkit-animation: Gradient 15s ease infinite;
    -moz-animation: Gradient 15s ease infinite;
    animation: Gradient 15s ease infinite;
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

#main-content {
    margin: 0 auto;
    width: 60%;
}

div#logo-container {
    border-radius: 50%;
    padding: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -55px;
    background-color: #f7f7f7;
}

div#logo-container > img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

div#header-text {
    text-align: center;
    margin-top: 50px;
    color: #575a5c;
}

div#header-text-ku {font-family: NotoKufiArabic;font-weight: bold;}

div#header-text-en {
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-copyright {
    font-size: 88%;
    text-align: center;
    position: absolute;
    bottom: 20px;
    margin: auto 0;
    width: 100%;
    left: 0;
    color: lightgray;
}

.footer-copyright a {
    color: lightgray;
}

.non-draggable {
    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}