* {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
}

ul,
ol {
    list-style-type: none;
}

#bar {
    width: 100%;
    height: 4rem;
    background-color: #333333;
    border-bottom: 5px #08c solid;
    align-items: center;
    display: flex;
    justify-content: space-between;
}

#logo {
    margin: auto;
    height: 95%;
    width: 10rem;
    background-image: url(../slike/arch-logo-white.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    transition: background-size 0.3s ease;
    flex-grow: 1;
}

#meniGumb {
    width: 3rem;
    height: 75%;
    margin-right: 20px;
    background-image: url(../slike/arch-logo-mini.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.3s ease, background-size 0.3s ease;
}

#meniBurger {
    width: 5rem;
    height: 10rem;
    margin-top: 7rem;
    margin-right: 1rem;
    padding: 0.3rem;
    border: 2px solid #08c;
    border-radius: 10px;
    background-color: #333333;
    text-align: center;
    display: none;
    opacity: 0;
    height: 0;
    overflow: hidden;
    z-index: 100;
    transition: opacity 0.3s ease, height 0.3s ease;
}

#meniBurger.show {
    display: block;
    opacity: 1;
    height: auto;
}

.meni {
    text-decoration: none;
    height: 100%;
    color: #999;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}

.meni:hover {
    text-decoration: underline;
    color: white;
}

#tenutno {
    color: white;
}

#vsebina {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

#canvas_div {
    width: 18vw;
    height: 16vw;
    margin: 1%;
}

#canvasID {
    width: 100%;
    height: 100%;
}

#prenos {
    margin: 1%;
    border: 1px solid #bcd;
    background-color: #ecf2f5;
    border-radius: 10px;
    padding: 1rem;
    height: fit-content;
    width: fit-content;
}

#prenos>h3 {
    color: #08c;
    border-bottom: 1px dotted black;
    margin-bottom: 1%;
    font-size: 150%;
}

#prenos>p {
    margin-bottom: 0.5%;
}

#prenos>code {
    display: block;
    border: 1px solid #bdb;
    border-radius: 5px;
    background-color: #dfd;
    font-size: 90%;
    width: 50%;
    margin-bottom: 0.5%;
}

#prenos>div {
    height: fit-content;
    width: 50%;
    display: flex;
    flex-direction: column;
}

#prenos>div>button {
    padding: 1%;
    border-radius: 10px;
    border: 1px solid #08c;
    background-color: #3ad;
    cursor: pointer;
    font-weight: bold;
    color: white;
    margin-bottom: 1%;
}

#prenos>div>button:hover {
    background-color: #08c;
    border: 1px solid #3ad;
    transition: 0.2s;
}

.center {
    text-align: center;
}

@media only screen and (max-width:812px) {
    #vsebina {
        flex-direction: column;
        justify-content: start;
        align-items: center;
    }
    #Noga{
        display: none;
    }
}

#Noga {
    width: 100%;
    font-size: 0.7rem;
    text-align: center;
    padding-bottom: 0.4rem;
}