@import url('https://fonts.googleapis.com/css?family=Hind+Siliguri:300&display=swap');

* {
    font-family: 'Hind Siliguri', sans-serif;
}

html,
body {
    height: 100%;
    overflow-y: hidden;
}

.capture {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title {
    font-size: 3.8em;
    font-weight: bold;
    text-align: center;
    margin-top: 25px;
    padding-bottom: 10px;
    border-bottom: 15px double orangered;
}

.text {
    font-size: 30px;
}

.fa-moon {
    color: #25587C;
    cursor: pointer;
}

.fa-sun {
    color: #f9d71c;
    cursor: pointer;
}

.dark {
    background-color: #10171E;
    color: #fff;
}

@media only screen and (max-width: 1024px) {
    .title {
        font-size: 36px;
        text-align: left;
        font-weight: 700;
    }

    .text {
        font-size: 25px;
        text-align: justify;
    }
}