@import url('https://fonts.cdnfonts.com/css/jetbrains-mono-2');
*{
font-family: 'JetBrains Mono', sans-serif;
}
body{
background-color: beige;
}
.welcomeBoxContainer
{
    position: absolute;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:100%;
    min-width: 100%;
    z-index:-1;
    margin:auto;
}
.welcomeBox
{
    width: 500px;
    height: 200px;
    border-radius: 5px; 
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.596);
    border-style: solid;
    border-color: black;
    border-width: 2px;
    overflow: hidden;
    background-color: white;
}
.initialWelcome {
    margin-top: 25px;
    background-color: rgb(255, 255, 255);
    display:flex;
    flex-direction:column;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.welcomeWindowBar
{
    height: 30px;
    border-style: solid;
    border-color: black;
    border-width: 0 0 2px 0;
    background-color: rgb(213, 213, 213);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display:flex;
    align-items: center;
    justify-content: space-between; /*to make the elements on its own place maybe*/
}
.welcomeWindowBarElements
{
    gap: 10px;
    margin-right: 10px;
    justify-content: right;
    display:flex;
    flex-direction: row;
}
.welcomeWindowBarText
{
    justify-content: left;
    margin-left: 10px;
}
.welcomeText {
        font-size: 1.5rem;
}
.getStarted , .errorResponse
{
    border-style:solid;
    border-width:1px;
    width:150px;
    height: 30px;
    background-color: rgb(166, 166, 166);
    text-decoration: none;
    color: black;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.minimize, .maximize, .close, .errorClose{
    border-style: none;
    background-color: transparent;
    text-decoration: none;
    color:black;
}
.minimize:hover, .maximize:hover
{
    background-color: white;
    cursor: pointer;
}
.close:hover, .errorClose:hover{
    background-color: red;
    cursor: pointer;
}
.getStarted:hover, .errorResponse:hover
{
    background-color: rgb(223, 223, 223);
    cursor: pointer;
}
.welcomeBox:hover,.errorBox:hover{
    box-shadow: 0 0px 10px rgba(89, 89, 89, 0.596);
}

/*ERROR BOX STYLES*/

.errorBoxContainer.active
{
    position: absolute;
    top: 0;
    left: 0;
    display:flex;
    align-items:center;
    justify-content:center;
    height:100vh;
    width: 100vh;
    z-index: 100;
}
.errorBox
{
    background-color: white;
    border-style: solid;
    border-width:2px;
    width:300px;
    height:150px;
    border-radius: 5px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.596);
}
.errorWindowBar
{
    height: 30px;
    border-style: solid;
    border-color: black;
    border-width: 0 0 2px 0;
    background-color: rgb(213, 213, 213);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display:flex;
    align-items: center;
    justify-content: space-between; /*to make the elements on its own place maybe*/
}
.errorWindowBarElements
{
    gap: 10px;
    margin-right: 10px;
    justify-content: right;
    display:flex;
    flex-direction: row;
}
.errorWindowBarText
{
    justify-content: left;
    margin-left: 10px;
}
.errorContent
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
}
.errorText{
    font-size:1.5rem;
    color:red;
}
.errorBoxContainer, .errorBoxContainer.inactive {
    display: none;
}
/* BG TEXT*/
.bgTextSuper{
    display: flex;
    position:absolute;
    z-index:-10;
    right:0;
    bottom:0;
}
.bgTextContainer
{
    height:700px;
    width:1500px;
    overflow:hidden;

}
.bgText{
    font-size:25rem;
    color:rgba(0, 0, 0, 0.266);
}