/*global styling classes*/


.full-width {
    width: 100%;
}

.flex {
    display: flex;
}

.justify-content-center {
    display: flex;
    justify-content: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

/*element classes*/

body {
    font-family: 'Lucida Console';
    background-color: black;
    color: white;
    height: 100%;
    width: 100%;
}

.sweeperbody {
    background-color: #F5F5F7!important;
    color: #6E6E73!important;
}

a {
    color: white;
}
a:visited {
    color: mintcream;
}

/*custom classes*/
/*TODO: make view-specific css files*/

.top-bar-title-box {
    height: 80px;
    width: 150px;
    border-style: solid;
    border-top-width: 20px;
    border-left-width: 20px;
    border-right-width: 100px;
    border-bottom-width: 100px;
    font-size: 2rem;
    border-radius: 10px;
    padding: 10px;
    /*box-shadow: 0 0 11px 0 rgba(0,0,0,0.52);*/
    display:flex;
    justify-content: center;
    background-color: white;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    color: black;
}

.top-bar-title-box p {
}

.top-bar-title-box:hover {
}

.top-border {
    background-color: white;
    border-radius: 5px;
    height: 15px;
    width: 80%;
    margin-top: 20px;
    margin-right: 20px;
    float: right;
}

.bottom-border {
    background-color: white;
    border-radius: 5px;
    height: 15px;
    width: 80%;
    margin-top: 20px;
    margin-right: 20px;
    float: bottom;
}

.right-border {
    background-color: white;
    border-radius: 5px;
    height: 860px;
    width: 15px;
    margin-top: 40px;
    margin-right: 20px;
    float: right;
}

#white-box {
    border-style: solid;
    border-color: white;
    border-width: 15px;
    border-radius: 10px;
    /*height: 860px;*/
    width: 98%;
    margin: 15px;
    display: flex;
    justify-content: center;
    color: white;
}

#white-box .content{
    margin-top: auto;
    margin-bottom: auto;
}

#white-box .content:hover{
    font-size: 20px;
    font-style: oblique;
}

.mirrored {
    display: flex;
    flex-wrap: wrap;
    rotate: 180deg;
}

#socials {
    color: white;
    margin-top: auto;
    position: fixed;
    z-index: 1;
    top: 45%;
    right: 2%;
}

#socials p{
    margin-left: 5px;
    margin-right: 5px;
}

#socials p:hover{
    font-size: 17px;
    font-style: oblique;
    text-decoration: underline;
}

#project-list {
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.project-list-element {
    width: 60%;
    height: 500px;
    /*box-shadow: 0px 0px 11px 5px rgba(255,255,255,1);*/
    border-radius: 15px;
    display: flex;
    margin-bottom: 60px;
    border-style: solid;
}

.project-image-container {
    height: 100%;
    width: 50%;
}

.project-image {
    height: 95%;
    margin: 15px;
}

.project-title {
    text-decoration: underline;
    text-decoration-color: gray;
    font-style: oblique;
    margin-right: 25px;
}

.project-title-box {
    display: flex;
}

.project-title-box p{
    margin-top: auto;
    margin-bottom: auto;
}

.project-status {
    margin-left: auto;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

.in-planning {
    background-color: blue;
}

.cancelled {
    background-color: red;
}

.in-progress {
    background-color: orange;
}

.finished {
    background-color: green;
}

.project-description {
    width: 500px;
}

.screenshot-box {
    margin-bottom: 50px;
    width: 33%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.screenshot-box img {
    width: 90%;
}

#navigation {
    color: white;
    margin-top: auto;
    position: fixed;
    z-index: 1;
    top: 45%;
    left: 3%;
    /*backdrop-filter: blur(4px);*/
}