﻿@import url('../font/fonts.css');

html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    margin: 0;
    /*background: rgba(140, 185, 255, 0.4);*/
    background-color: rgb(58, 0, 92);
}

#windowpane {
    height: 100vh;
    width: 100%;
}

#headstock {
    background: rgb(250, 250, 255);
    height: 50px;
    width: 100%;
    box-shadow: 0 1px 7px 1px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}


#contentbox {
    width: 95%;
    height: calc(100% - 35px);
    margin-left: 5%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#boltwindow {
    margin-top: 10vh;
    width: 30px;
    height: 500px;
    background: white;
    border: outset 0.5px rgba(0,0,0,0.3);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 4px 2px rgba(0,0,0,0.2);
}

#menubtn {
    height: 80px;
    width: 80px;
    background: white;
    border: 0.5px solid rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-content: space-around;
    cursor: pointer;
    margin-left: -26px; /*Includes the outset border. This is annoyying*/
    margin-top: -40px;
    box-shadow: 0 1px 4px 2px rgba(0,0,0,0.2);
}

.burgerlineshort {
    width: 40px;
    height: 1px;
    border: 3px solid rgba(0,0,0,0.7);
    border-radius: 4px;
}

.burgerlinelong {
    width: 50px;
    height: 1px;
    border: 3px solid rgba(0,0,0,0.7);
    border-radius: 4px;

    margin-top: 2px;
    margin-bottom: 2px;
}


#optwindow {    
    margin-top: 5vh;
    margin-right: 6vw;
    width: 70vw;
    height: 80vh;
    background: white;
    border: outset 0.5px rgba(0,0,0,0.3);
    border-radius: 15px;
}



.apptitle {
    font-family: Bonnevarc;
}

.titleheaderbar {
    margin-right: 2px;
    width: 100%;
    border: 1px solid white;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background: rgb(225,255,200);
}

/*.headertitle {
    
}*/

.bigtitle {
    font-size: 10vw;
    font-weight: 600;
    letter-spacing: 20px;
}

titleleft {
    /*color: rgb(106, 208, 248);*/
    color: rgb(255, 255, 255);
}

titleright {
    color: rgb(106, 122, 248);
}

redtext {
    color: rgb(226, 123, 123);
}

whitetext {
    color: rgb(250, 250 ,250);
}

input[type="text"]{
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid grey;
    font-family: Brutel-Thin;
    color: aliceblue;
    letter-spacing: 3px;
    font-size: 25px;
}

input[type="password"] {
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid grey;
    font-family: Brutel-Thin;
    color: aliceblue;
    letter-spacing: 3px;
    font-size: 25px;
}

input[type="submit"]{
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid grey;
    font-family: Brutel-Thin;
    color: aliceblue;
    letter-spacing: 3px;
    font-size: 25px;
    cursor: pointer;
}