@font-face {
    font-family: 'Calci';
    src: url('../assets/fonts/digital-7/digital-7.ttf') format('truetype');
}

@font-face {
    font-family: 'Dotted';
    src: url('../assets/fonts/dotty/dotty.ttf') format('truetype');
}

* {
    padding: 0px !important;
    margin: 0px !important;
    box-sizing: border-box !important;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
    background-color: #e6e6e6;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    width: 80%;
    height: auto;
    margin: 0 auto !important;
    padding: 25px 20px !important;
}

.content-wrapper h1 {
    font-size: 25px;
}

.content-wrapper .content-section .content-para,
.content-wrapper .content-section ul li {
    color: #4d4a4a;
    font-size: 15px;
    line-height: 25px;
}

.content-wrapper .content-section {
    width: 100%;
    height: auto;
    padding: 20px 10px !important;
}

.content-wrapper .content-section .list {
    width: 100%;
    height: auto;
    padding: 0px 0px 0px 20px !important;
}

.random-hin-wrapper {
    width: 50vw;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    align-items: center;
    position: relative;
    margin: 10px auto !important;
    background-image: linear-gradient(45deg,
            hsl(240deg 100% 20%) 0%,
            hsl(240deg 97% 23%) 8%,
            hsl(240deg 94% 25%) 17%,
            hsl(239deg 91% 28%) 25%,
            hsl(239deg 89% 31%) 33%,
            hsl(238deg 88% 34%) 42%,
            hsl(237deg 87% 37%) 50%,
            hsl(236deg 87% 39%) 58%,
            hsl(235deg 88% 42%) 67%,
            hsl(234deg 89% 44%) 75%,
            hsl(232deg 92% 47%) 83%,
            hsl(231deg 95% 48%) 92%,
            hsl(229deg 100% 50%) 100%);
    border-radius: 30px;
    box-shadow: 2px 2px 12px 4px rgba(0, 0, 0, 0.25);
    padding: 0px 10px!important;
}

.digital-pad {
    background: #000000;
    padding: 2px 20px !important;
    border-radius: 10px;
    display: flex;
    gap: 10px;
}

.hin-pad {
    width: 100%;
    text-align: center;
}

.hin-pad .entity1,
.hin-pad .entity3 {
    font-weight: normal;
    color: white;
    font-family: 'Dotted' !important;
    font-size: 86px;
    letter-spacing: 2px;
}

.hin-pad .entity2,
.hin-pad .entity4,
.hin-pad .entity5 {
    font-weight: normal;
    color: white;
    font-family: 'Calci' !important;
    font-size: 60px;
    letter-spacing: 2px;
}

.fetchHIN {
    border-radius: 20px;
    background-color: orangered;
    color: white;
    box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.25);
    font-weight: bold;
    font-size: 30px;
    padding: 20px !important;
    cursor: pointer;
    position: relative;
    border: none !important;
    outline: none !important;
}

.random-hin-btn-focus {
    box-shadow: none;
}

.copy-to-clipboard {
    width: 30px;
    height: 30px;
    color: white;
    position: relative;
    top: 15px;
    cursor: pointer;
}

.footer-content {
    background-color: white;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px !important;
    align-items: center;
    box-shadow: 0px 2px 12px 4px rgba(0, 0, 0, 0.25) !important;
}

.footer-content p {
    color: #4d4a4a;
    font-size: 15px;
    padding: 0px 5px !important;
}

.footer-content p a {
    color: #4d4a4a;
    font-weight: bold;
}

@media screen and (min-width: 300px) and (max-width: 800px) {
    .content-wrapper {
        width: 100%;
        padding: 5px !important;
    }

    .random-hin-wrapper {
        width: 80vw;
    }

    .copy-to-clipboard {
        width: 25px;
        height: 25px;
        top: 10px;
    }

    .digital-pad {
        padding: 5px 20px !important
    }

    .hin-pad .entity1,
    .hin-pad .entity3 {
        font-size: 56px;
    }

    .hin-pad .entity2,
    .hin-pad .entity4,
    .hin-pad .entity5 {
        font-size: 40px;
    }

    .fetchHIN {
        padding: 15px !important;
        font-size: 25px;
    }

    .footer-content {
        justify-content: center;
    }
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
    .random-hin-wrapper {
        width: 80vw;
    }

    .footer-content {
        justify-content: center;
    }
}