/* css */

/* Link to Figma design

https://www.figma.com/file/oZ992N2eScTcvFqbwYb2ZA/Critical-Web-Design?type=design&node-id=181%3A2&mode=design&t=3nPqZZ1104KuKaIR-1
*/

body {
    font-family: 'Istok Web', sans-serif;
    font-weight: bold;
    background-color: #191414;
    color: white;
}

h1{
    text-align: center;
    padding: 30px;
    font-size: 40px;
}

h4 {
    font-size: 20px;
}

h6 {
    font-size: 14px;
    padding-bottom: 25px;
}

img {
    padding-bottom: 25px;
}

a {
    color: white;
}

a:hover {
    color: #1ED760;
}

button {
    border-color: #1ED760;
    background-color: #1ED760;
    color: white;
    font-size: 20px;
    border-radius: 10px;
}

button:hover {
    border-color: #1ED760;
    background-color: white;
    color: #1ED760;
}

.title {
    margin-bottom: 50px;
}

.task-title {
    text-align: center;
    margin-bottom: 25px;
}

.task-bar {
    text-align: center;
    position: sticky;
    top: 0;
    background-color: #191414;
}

.line-break {
    border-top: 2px solid #1ED760;
    color: #191414; /* To hide the  text on the page */
    margin: 25px 0 25px;
}

/* change font sizes depending on the breakpoint */

/* Medium */
@media (min-width: 768px) {
    h1 {
        font-size: 60px;
    }
    h4 {
        font-size: 30px;
    }
    h5 {
        font-size: 25px;
    }
    h6 {
        font-size: 18px;
    }
    .task-title {
        margin-bottom: 50px;
    }
    .line-break {
        margin: 50px 0 50px;
    }
}

/* Large and Beyond */
@media (min-width: 992px) {
    h1 {
        font-size: 90px;
    }
    h4 {
        font-size: 45px;
    }
    h5 {
        font-size: 35px;
    }
    h6 {
        font-size: 20px;
    }
    .title {
        margin-bottom: 100px;
    }
}