body {
    margin: 0;
    padding: 0;
    height: 44.75em;
    background-image: url("./src/earthBackground.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: row;
}

.layout__left-frame {
    width: 75%;
}

.window {
    height: 73%;
    width: 93%;
    margin-top: 9.5%;
    margin-left: 6.6%;
    display: flex;
    flex-direction: column;
    background-color: rgb(180, 180, 180);
    box-shadow: 0 4px 2px -2px gray;
}

.window__header {
    height: 6.4%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: rgb(0, 0, 155);
}

.window__title {
    height: 100%;
    width: 90%;
    display: flex;
    align-items: center;
}

.window__title-text {
    letter-spacing: 1px;
    color: white;
    font-family: "Roboto", sans-serif;
    margin-left: 1.5%;
}

.window__button {
    height: 75%;
    width: 2.4%;
    border-radius: 1px;
    border-width: 1px;
    background-color: rgb(180, 180, 180);
    background-position: center;
    background-size: cover;
    cursor: pointer;
}

.window__button:hover {
    background-color: rgb(157, 157, 157);
    border: solid;
}

.window__button--minimize {
    background-image: url("./src/remove.svg");
    margin-left: 1.2%;
}

.window__button--maximize {
    background-image: url("./src/fullScreen.svg");
    margin-left: 0.4%;
}

.window__button--close {
    background-image: url("./src/close.svg");
    margin-left: 0.4%;
}

.navigation {
    height: 6.9%;
    width: 100%;
    display: flex;
    flex-direction: row;
}

.navigation__button {
    width: 5.5%;
    height: 100%;
    font-size: 16px;
    background-color: rgb(180, 180, 180);
    color: black;
    font-family: "Roboto", sans-serif;
    border: none;
    cursor: pointer;
}

.navigation__button:hover {
    background-color: rgb(157, 157, 157);
    border: solid;
}

.window__content {
    width: 100%;
    height: 86.7%;
    display: flex;
    flex-direction: row;
}

.window__content-left {
    width: 7.5%;
    height: 100%;
    box-shadow: inset 0 20px 5px -20px rgba(0, 0, 0, 0.8);
}

.window__content-right {
    width: 91%;
    height: 96%;
    border-radius: 3px;
    background-color: rgb(138, 138, 138);
    display: flex;
    align-items: center;
}

.window__view {
    width: 94%;
    height: 98.5%;
    margin-left: 0.4%;
    background-color: white;
    display: flex;
    flex-direction: column;
}

#rightFrame{
    width: 25%;
    display: flex;
    flex-direction: column;
}

#clock{
    width: 85%;
    height: 22%;
    margin-top: 55.5%;
    margin-left: 4%;
    background-color: rgb(180, 180, 180);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 2px -2px gray;
}

#clockTop{
    height: 21%;
    background-color: rgb(0, 0, 155);
    display: flex;
    flex-direction: row;
}

#clockTitle{
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    align-items: center;
}

#clockBtn{
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
}

#titleClock{
    letter-spacing: 1px;
    color: white;
    font-family: "Roboto", sans-serif;
    margin-left: 4%;
}

#clockBtnImg{
    margin-left: 65%;
    width: 27%;
    background-image: url("./src/close.svg");
}

#clockContent{
    width: 100%;
    height: 43%;
    display: flex;
    flex-direction: row;
}

#clockImg{
    width: 17%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#paraClock{
    width: 83%;
    height: 100%;
    display: flex;
    align-items: center;
}

#date{
    margin-left: 3%;
}

#closeBtnImg{
    margin-left: 65%;
    width: 27%;
    background-image: url("./src/close.svg");
}

#clockBottom{
    height: 36%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#clockBottomBtn{
    width: 35%;
    height: 55%;
    margin-top: -6%;
    font-family: "Roboto", sans-serif;
    background-color: #b4b4b4;
    border-style: solid;
    border-color: black;
    border-radius: 1px;
    cursor: pointer;
}

#clockBottomBtn:hover{
    background-color:  rgb(157, 157, 157);
}

#windowViewTitleJoin{
    width: 100%;
    height: 15%;
    background-color: blue;
    display: none;
}