@import url('https://fonts.googleapis.com/css2?family=Rubik+Pixels&display=swap');
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

* {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    border-bottom: 1px dotted white;
    color: inherit;
}

button:hover {
    opacity: 0.5;
}

@keyframes cursor {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.cursor {
    position: relative;
    display: inline;
    height: 20px;
    width: 10px;
    background-color: #000;
    animation: cursor 1s steps(1) infinite;
}

body {
    /* background-color: rgb(33, 32, 35); */
    background-color: #000;
}

body #main-container {
    position: relative;
    margin: 0 auto;
    height: auto;
    margin-top: 50px;
    text-align: center;
}

header {
    position: fixed;
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
    z-index: 999;
    background-color: rgb(37, 36, 39);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

header #logo {
    position: relative;
    float: left;
    width: 50px;
    height: 50px;
    background-color: rgb(37, 36, 39);
    background-image: url("../images/logo.png");
    background-size: 60% 60%;
    background-repeat: no-repeat;
    background-position: center;
    border-left: 5px solid #8e44ad;
}

header #website-title {
    position: relative;
    float: left;
    width: 220px;
    height: 50px;
    background-color: rgb(37, 36, 39);
    text-align: left;
    line-height: 50px;
    font-size: 20px;
    font-weight: bolder;
    font-family: 'Verdana', 'Helvetica', 'Helvetica Neue', sans-serif;
    color: white;
}

header #website-title::after {
    position: absolute;
    content: "Dashboard";
    margin-left: 10px;
    margin-top: 15px;
    width: 80px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 10px;
    background-color: #2e51a2;
}

body #main-container .section-title {
    position: relative;
    display: inline-block;
    width: auto;
    margin: 0 auto;
    margin-bottom: 20px;
    padding: 0 20px 20px 20px;
    font-size: 25px;
    font-family: 'VT323', monospace;
    color: white;
    text-align: center;
}

.text-complex-background {
    color: white;
    background-color: #000;
}

.text-complex-background-white {
    color: #000;
    background-color: #fff;
}


body #main-container .section-text {
    position: relative;
    margin: 0 auto;
    width: calc(100% - 60px);
    height: auto;
    margin-bottom: 40px;
    font-family: "Verdana";
    color: white;
    text-align: left;
    overflow: auto;
    background-color: rgb(37, 36, 39);
    padding: 30px;
}

footer {
    position: relative;
    width: 100%;
    height: auto;
    padding-bottom: 50px;
    padding-top: 50px;
    font-size: 12px;
    font-weight: light;
    font-family: "Verdana";
    color: white;
    text-align: center;
    overflow: auto;
    background-color: rgb(37, 36, 39);
}

.card-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/************

CARDS

************/

.card {
    min-width: 325px;
    background-color: rgb(37, 36, 39);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.header {
    padding: 20px;
    color: white;
}

.title {
    margin: 0;
    font-family: 'Helvetica', sans-serif;
    font-size: larger;
    margin-bottom: 10px;
    text-align: center;
    font-weight: normal;
}

.subtitle {
    margin: 0;
    font-weight: normal;
    color: lightgrey;
    font-family: 'Helvetica', sans-serif;
    font-size: small;
    text-align: center;
    margin-bottom: 10px;
}

.image-box {
    position: relative;
    margin: 0 auto;
    height: 120px;
    width: 120px;
    border-radius: 90px;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    margin-bottom: 20px;
    margin-top: 20px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0.7;
}

.progress-bar-container {
    height: 20px;
    width: 80%;
    position: relative;
    margin: 0 auto;
    background-color: #424242;
    border-radius: 4px;
    margin-bottom: 10px;
}

.progress-bar::before {
    position: relative;
    display: block;
    line-height: 20px;
    content: "Sentiment Score";
    color: white;
    font-family: 'Helvetica', sans-serif;
    font-size: small;
    margin-left: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: left;
}

.progress-bar {
    height: 100%;
    background-color: #2196f3;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
}

.actions {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    margin-bottom: 20px;
    gap: 8px;
}

.actions a {
    border-bottom: 0;
}

.primary-btn,
.secondary-btn {
    padding: 8px 16px;
    width: 120px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Helvetica', sans-serif;
    font-size: small;
}

.primary-btn {
    background-color: #2e51a2;
    color: white;
}

.secondary-btn {
    background-color: #ff4500;
    color: white;
}

/************

ROWS

************/

.row {
    min-width: 325px;
    min-height: 160px;
    background-color: rgb(37, 36, 39);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.row-image-container {
    position: relative;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    margin: 20px 10px;
    z-index: 998;
}

.row-overlay {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
    height: 80%;
    border-radius: 90px;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0.7;
    z-index: 9999;
}

.row-progress-bar-container {
    height: 120px;
    width: 120px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.row-progress-bar {
    height: 80%;
    width: 80%;
    background-size: cover;
    background-position: center center;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.row-header {
    padding: 25px 0 0 0;
    color: white;
}

.row-title {
    margin: 0;
    font-family: 'Helvetica', sans-serif;
    font-size: larger;
    margin-bottom: 10px;
    text-align: center;
    font-weight: normal;
}

.row-subtitle {
    margin: 0;
    font-weight: normal;
    color: lightgrey;
    font-family: 'Helvetica', sans-serif;
    font-size: small;
    text-align: center;
}

.row-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    min-width: 248px;
    gap: 8px;
}

.row-actions a {
    border-bottom: 0;
}

.row-primary-btn,
.row-secondary-btn {
    padding: 8px 16px;
    width: 120px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Helvetica', sans-serif;
    font-size: small;
}

.row-primary-btn {
    background-color: #2e51a2;
    color: white;
}

.row-secondary-btn {
    background-color: #ff4500;
    color: white;
}

.row-image-column {
    position: relative;
    float: left;
}

.row-content-column {
    position: relative;
    float: right;
}

/************

SMALL CARDS

************/


.small-card {
    position: relative;
    min-width: 325px;
    min-height: 70px;
    line-height: 70px;
    border: 1px solid #fff;
    overflow: hidden;
    color: white;
    font-size: 20px;
    font-family: 'VT323', monospace;


    /* position: relative;
    display: inline-block;
    max-width: 600px;
    margin-bottom: 40px;
    padding: 20px;

    text-align: center;
    opacity: 0.5;
    border: 1px solid #000; */
}


/***************

SLIDESHOW

****************/

.carousel-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.carousel-box-wrapper {
    position: relative;
    float: left;
    height: 100%;
    width: 100%;
    /* animation-name: carousel;
    animation-duration: 30s;
    animation-iteration-count: infinite; */
    background: url('../images/cover.jpg');
    background-position: center center;
    background-size: cover;
    text-align: center;
    overflow: auto;
}

.carousel-title {
    position: relative;
    display: inline-block;
    width: auto;
    margin-top: 90px;
    margin-bottom: 20px;
    padding: 20px;
    font-size: 25px;
    font-family: 'VT323', monospace;
    text-align: center;
    opacity: 0.5;
    border: 1px solid #000;
}

.carousel-text {
    position: relative;
    display: inline-block;
    max-width: 600px;
    margin-bottom: 40px;
    padding: 20px;
    font-size: 20px;
    font-family: 'VT323', monospace;
    text-align: center;
    opacity: 0.5;
    border: 1px solid #000;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}


@media screen and (min-width: 0px) and (max-width: 479px) {
    /* CONTAINER */

    body #main-container {
        width: 100%;
    }

    /* header #logo {
        position: relative;
        float: none;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        margin: 0 auto;
        border-right: none;
        box-shadow: none;
        background-size: auto 50%;
    }

    header #website-title {
        position: relative;
        display: none;
        float: none;
        height: 80px;
        background-color: transparent;
        line-height: 80px;
        margin: 0 auto;
        box-shadow: none;
    } */

    body #main-container .section-text {
        width: calc(90% - 60px);
    }

    .row-image-column {
        position: relative;
        float: none;
        padding: 20px 0 0 0;
    }

    .row-content-column {
        position: relative;
        float: none;
    }

    .row-image-container {
        margin: 0 auto;
    }

    .carousel-title {
        width: calc(100% - 50px);
        padding: 0;
        padding: 25px;
        margin: 0;
        margin-top: 50px;
        opacity: 0.5;
        border: 0;
        text-align: right;
    }

    .carousel-text {
        width: calc(100% - 50px);
        padding: 0;
        margin: 0;
        padding-bottom: 25px;
        padding-left: 25px;
        padding-right: 25px;
        opacity: 0.5;
        border: 0;
        text-align: left;
    }

    footer {
        position: relative;
        width: calc(100% - 100px);
        height: auto;
        padding: 50px;
    }

}

@media screen and (min-width: 480px) and (max-width: 767px) {
    /* CONTAINER */

    body #main-container {
        width: 480px;
    }

    /* header #logo {
        position: relative;
        float: none;
        width: 100px;
        height: 100px;
        margin: 0 auto;
        border-radius: 50%;
        border-right: none;
        box-shadow: none;
        background-size: auto 50%;
    }

    header #website-title {
        position: relative;
        display: none;
        float: none;
        height: 80px;
        background-color: transparent;
        line-height: 80px;
        margin: 0 auto;
        box-shadow: none;
    } */


    .carousel-text {
        width: 90%;
    }

    footer {
        position: relative;
        width: calc(100% - 100px);
        height: auto;
        padding: 50px;
    }

}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    /* CONTAINER */

    body #main-container {
        width: 768px;
    }


}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
    /* CONTAINER */

    body #main-container {
        width: 1024px;
    }

}

@media screen and (min-width: 1200px) {
    /* CONTAINER */

    body #main-container {
        width: 1200px;
    }

    .row {
        min-width: 502px;
    }

    .row-image-container {
        margin: 20px 0px 20px 40px;
    }

    .row-content-column {
        margin-right: 20px;
    }

    .small-card {
        min-width: 502px;
    }


}