/* i know this is overcomplicated asf shut up --brew */

@font-face {
    font-family: 'Tahoma';
    font-style: normal;
    font-weight: normal;
    src: url(/res/tahoma08pt.woff2) format('woff2');
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.titlebarcontent {
    display: flex;
    gap: 5px;
}

.titlebarcontent span {
    font-size: 10px;
}

.titlebar {
    width: 100%;
    padding: 5px;
    background: linear-gradient(90deg,rgba(55, 42, 155, 1) 0%, rgba(89, 87, 199, 1) 50%, rgba(79, 62, 201, 1) 100%, rgba(221, 215, 247, 1) 100%);
    box-sizing: border-box;
    color: white;
    font-family: 'Tahoma';
}

.addrbar {
    width: 100%;
    padding: 5px;
    background-color: gray;
    box-sizing: border-box;
}

.addrbarcontent {
    display: flex;
    gap: 5px;
}

.addrbarcontent button {
    width: 25px;
    height: 25px;
}

.addrbarcontent button a{
    text-decoration: none;
    color: white;
}

.addrbarcontent .linkbtn {
    display: flex;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    color: white;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

.addrbarcontent .linkbtn span {
    text-align: center;
}

.addrbarcontent #brewbtn {
    background-color: #202020;
    border: solid #000;
    border-radius: 2px;
    color: white;
    transform: rotate(-5deg);
}

.addrbarcontent #jarynbtn {
    background-color: #610000;
    border: solid #410000;
    border-radius: 2px;
    color: white;
    transform: rotate(5deg);
}

#addressbar {
    flex: 1;
    height: 20px;
}

.borderpadding {
    padding-bottom: 65px;
}