*{
    box-sizing: border-box;
    /* overflow:hidden; */
}

body{
    margin:0;
    padding:0;
    font-family: "Century Gothic", sans-serif;
}

/* Top Menu formatting */
.scrum-menu{
    position: relative;
    /* border: 1px solid black; */
    display:flex;
    justify-content:left;
    align-items:center;
    height:10vh;
    width:60%;
    margin-left:10%;
    z-index:3;
    

}

.toggler{
    position: relative;
    width:5%;
    height:40%;
    padding-right:0vw;
    /* border: 1px solid red; */
    display:flex;
    justify-content: center;
    align-items: center;
    margin-left:2%;
    box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.24);
    border-radius: 10px;
}

.option-menu{
    width:50%;
    height:80%;
    display:flex;
    justify-content: space-around;
    align-items: center;
    margin-left:35%;
    margin-left: 35%;
    box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.24);
    border-radius: 10px;
}

.summary-btn-container{
    border:0;
    background: none;
    display:flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    /* margin-left:20vw; */
    text-align:center;
    border:3px solid black;
    /* padding:14px 10px; */
    width:130px;
    height:80%;
    outline:none;
    color:rgb(255, 255, 255);
    background-color: whitesmoke;
    border-radius:24px;
    transition:0.25px;
    cursor:pointer;
    text-decoration: none;
    /* box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.315); */
}
#summary{
    color:black;
    display:flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width:170px;
    text-decoration: none;
    transition: background-color 1s, color 1s;
}
.summary-btn-container:hover{
    background-color: black;
    color:whitesmoke; 
}
#summary:hover{
    color:whitesmoke;
    /* text-decoration: none; */
}
/* Progress Bar */
.progress-bar-container{
    height:10vh;
    width: 100%;
    border:1px solid black;
    display: flex;
}

.progress-text{
    width:30%;
    height:100%;
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 2rem;
    margin-left:6.5vw;
}
.progress-bar{
    width:70%;
    height:100%;
    display: flex;
    align-items: center;
    padding-right: 2vh;
}

.progress-bar-value{
    width:10%;
    height:50%;
    border-radius: 10px;
    background-color: aquamarine;
    display:flex;
    justify-content: center;
    align-items: center;
    /* -webkit-transition : width 5s ease;
   -moz-transition : width 5s ease;
    -o-transition : width 5s ease; */
    transition : width 2s ease;

}

/* .progress-bar-value::-webkit-progress-value {
    
} */


/* Scrum Board */
.scrum-board{
    height:80vh;
    display:flex;
    justify-content: space-between;
    /* padding-top:2%; */
    text-align: center;
    /* padding-left:10%;
    padding-right:10%; */
    background-color: aqua;
}
.backlog,.todo,.inProgress,.done,.review{
    padding-top: 20px;
    width:20%;
    font-size: 2rem;
    /* color: */
}

.backlog{
    background-color:#66545e;
}
.todo{
    background-color: #a39193;
}
.inProgress{
    background-color: #aa6f73;
}
.done{
    background-color: #eea990;
}
.review{
    background-color: #f6e0b5;
}

/* Notes formatting */
.sticky-note{
    width: 15vw;
    height: 40vh;
    z-index:1;
}

.nav{
    height: 20%;
    width:100%;
    /* border: 1px solid black; */
    border-top-left-radius: 70%;
    border-top-right-radius: 70%;
    border-start-start-radius: 100%;
    border-start-end-radius: 100%;
    /* border-radius:40%; */
    display:flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: white;
    /* box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.24); */
    margin-bottom: 1vh;
}

.red,.orange,.yellow,.blue,.white{
    height:20px; 
    width: 20px;
    border-radius: 50%;
    border: 1px solid black;
    transition: all 0.5s;
}
.red{
    background-color: #A84040;
}

.orange{
    background-color: #f69552;
}
.yellow{
    background-color: #EED971FF;
}
.blue{
    background-color: #CCE1F2;
}
.white{
    background-color: #ffffff;
}

.check{
    height:20px; 
    width: 20px;
    border-radius: 50%;
    border:1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: black;
}

.minimize{
    /* border: 1px solid red; */
    height:20px; 
    width: 20px;
    border-radius: 50%;
    border:1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    /* background-color: rgb(214, 214, 41); */
    /* margin-right: 0.5vw; */
}
.closeNote{
    /* border: 1px solid red; */
    height:20px; 
    width: 20px;
    border-radius: 50%;
    border:1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    /* background-color: rgb(196, 33, 33); */
    /* margin-right: 2vw; */
}

.writing-pad{
    height: 80%;
    width:100%;
    /* border: 1px solid red; */
    font-family: "Raleway", sans-serif;
    font-size: 25px;
    padding:0.5em;
    overflow-y: auto;
    /* box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.24); */
    /* border-radius: 10%; */
    border-bottom-right-radius:30%;
    border-bottom-left-radius:30%;
    border:0.5px solid black;
    background-color: whitesmoke;
}
.writing-pad:focus{
    outline-width: 0px;
}