html,
body {

    height: 100%;


}

a {
    text-decoration: none;
    color: #4bb;
}

.button,
.box,
button {
    -webkit-box-shadow: 0px 1px 9px #666666;
    -moz-box-shadow: 0px 1px 9px #666666;
    box-shadow: 0px 1px 9px #666666;
}

.indent {
    text-indent: 30px;
        }
        
.button {
    -webkit-border-radius: 16;
    -moz-border-radius: 16;
    border-radius: 16px;
    font-family: Arial;
    color: white;
    font-size: 20px;
    background: black;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
}

#content {
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: center;

}


.button:hover,
button:hover {
    transform: scale(1.05);
}

.button:active,
button:active {
    transform: scale(0.95);
    border-radius: 24px;
}

footer {
    background-color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
}

#container {
    flex-direction: column;
    display: flex;
    flex-grow: 2;
    align-items: center;
    justify-content: center;
}

.copyText {
    padding: 12px;
    cursor: pointer
}

.copyText:hover {
    background-color: grey;
    padding: 12px;
    border-radius: 16px;

}

.copyText:active {
    background-color: #555;
    border-radius: 24px;
}

* {
    transition: all 0.3s ease-in-out;
    margin: 0;
    user-select: none;
}

div:not(.line), p, a {
    margin-bottom: 12px;
}

img {
    -webkit-user-drag: none;
}

.box {
    background: white;
    border: grey solid 2px;
    border-radius: 16px;
    padding: 16px;
    align-items: center;
}

.line {
    background-color: grey;
    height: 2px;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #0000;
}

::-webkit-scrollbar-thumb {
    background-color: #0002;
    transition: background-color .3s;
    cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #0005;
}

.infobox {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 12px;
    column-gap: 8px;
}

.Inf {
    display: flex;
    flex-direction: column;
    flex: 1;
}

body {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-image: (url(/img/background.jpg));
}

a:focus,
input:focus,
p:focus,
div:focus {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


#refresh,
.line {
    width: 100%;
}

button {
    background-color: white;
    font-size: 24px;
    border: grey solid 2px;
    border-radius: 16px;
}

#refresh:disabled {
    transform: scale(1);
    color: black;
}

#container > .box {
    width: 25%;
}

@media screen and (max-width: 800px) {
    #container > .box{
        width: 80%;
    }
    .infobox{
        flex-direction: column;
    }
    
}