@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

:root{
    --color-one: rgb(255, 255, 255);
    --color-two: #6c6c6d;
    --font-size: 16px;
}

html, button, input, select{
    font-family: 'Montserrat', sans-serif;
    font-size: var(--font-size);
}

html, body{
    margin: 0;
    padding: 0;
}

body{
    background: linear-gradient(to right, dodgerblue 0%, deepskyblue 100%);
}

a{
    text-decoration: none;
}

p{
    margin: 0;
}

button{
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 20px;
    font-weight: 600;
    width: 200px;
}

button:active{
    transform: scale(0.9);
}

.header{
    top: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    z-index: 2;
    position: fixed;
    background: white;
    border-bottom: 1px solid rgb(235, 235, 235);
}

.header p{
    text-align: center;
    font-size: 30px;
    margin-top: 5px;
    font-weight: bold;
    color: dodgerblue;
}

.button-white{
    background-color: white;
    color: black;
}

.button-blue{
    background-color: dodgerblue;
    color: white;
}

.container{
    width: calc(100% - 40px);
    padding: 20px;
    margin-top: 60px;
}

.top-nav {
    margin-top: 20px;
    display: flex;
}

.top-nav .nav-item {
    flex: 1;
    display: flex;
    margin: 5px;
}

.title-bar{
    margin: 10px;
    font-size: 18px;
    width: calc(100% - 20px);
    display: flex;
}

.title-bar p{
    flex: 1;
    font-weight: bold;
}

.content{
    color: black;
    margin-top: 5px;
    width: calc(100% - 20px);
    padding: 10px;
    background: white;
    border: 3px solid white;
    border-radius: 5px;
    display: flex;
}

.content:hover{
    border: 3px solid royalblue;
}

.content .title{
    flex: 2;
}

.content p{
    flex: 1;
}

.title, .priority{
    /* color: dodgerblue; */
    font-weight: 600;
}

.related_to{
    color: dodgerblue;
}

label{
    color: white;
    font-weight: 600;
}

input, select{
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    margin-top: 5px;
    outline: none;
    border: none;
}

.board{
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.board p{
    margin-top: 10px;
    font-size: 14px;
}

.board .task-title{
    margin-top: 0;
    font-size: 26px;
    font-weight: bold;
}

.board .task-description{
    font-size: 18px;
}

.board .task-created-by,
.board .task-assigned-to,
.board .task-related-to,
.board .task-releases,
.board .task-github{
    color: dodgerblue;
    font-weight: 600;
}

.board .task-priority{
    font-weight: 600;
}

.board .task-status{
    color: dodgerblue;
}

.board .task-date-created{
    font-weight: 600;
}

.board .task-date-closed{
    font-weight: 600;
}

@media screen and (max-width: 580px){
    .title-bar {
        display: none;
    }

    .content{
        display: block;
    }

    .content .related_to,
    .content .assigned_to,
    .content .priority,
    .content .status{
        margin-top: 5px;
        font-size: calc(var(--font-size) - 2px);
    }
}