body, html, p, h1{
    padding: 0;
    margin: 0;
    font-family: "Ubuntu Mono", Arial, Helvetica, sans-serif;
}

.header {
    background: linear-gradient(#367beb, #0f2140);
    padding-left: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 15px;
    border-style: solid;
    border-width: 0px;
    border-bottom-width: 3px;
    border-color: lightblue;
    box-shadow: 0px 0px 10px black;
}

h1 {
    color: white;
    font-size: x-large;
    font-weight: 100;
}

body {
    background-image: linear-gradient(#001639, #000103);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    min-height: 100vh;
}

.content {
    position: relative;
    background-color: rgba(255, 0, 0, 0);;
    width: 700px;
    height: 600px;
    margin: 0px;
    padding: 0px;
}

.page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 50px;
    background-image: url("images/brick.png");
}

.tabs {
    background: linear-gradient(#367beb, #0f2140);
    display: flex;
    height: 35px;
    align-items: last baseline;
    justify-content: left;
    flex-direction: row;
    margin: 0px;
    padding: 0px;
    padding-left: 16px;
    outline-width: 3px;
    outline-style: solid;
    outline-color: lightblue;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.tab {
    margin-right: 6px;
    margin-left: 0px;
    height: 30px;
    font-family: "Ubuntu Mono", Arial, Helvetica, sans-serif;
    padding-left: 16px;
    padding-right: 16px;
    background-color: white;
    cursor: pointer;
    font-size: large;
    border-width: 3px;
    border-style: solid;
    border-color: rgb(99, 99, 99);
    border-bottom: none;
    z-index: 1;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.iframe {
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    height: calc(100% - 35px);
    background-color: white;
    border-width: 0px;
    outline-width: 3px;
    outline-style: solid;
    outline-color: rgb(99, 99, 99);
    font-size: large;
}

.minmaxclose {
    position: absolute;
    right: 5px;
    height: 25px;
    top: 4px;
}

.windowsmediaplayer {
    position: absolute;
    left: 25px;
    top: 90px;
}

.zoomout {
    position: absolute;
    color: white;
    font-size: large;
    text-align: center;
    top: 50px;
    display: none;
}

@media (max-width: 1300px) {
    .windowsmediaplayer {
        display: none;
    }
    .popup {
        display: none;
    }
    .zoomout {
        display: block;
    }
}

.popup {
    position: absolute;
    top: 150px;
    right: 15px;
    width: 360px;
    height: 300px;
    background-color: rgba(0, 0, 0, 0);;
    margin: 0px;
    padding: 0px;
}

.windowtitle {
    margin-bottom: 6px;
}

.musiciframe {
    position: absolute;
    top: 60px;
    left: 72px;
    width: 200px;
    height: 150px;
}

