@font-face {
    font-family: "retrofunks";
    src: url("Retrofunks.otf");
}

body {
    margin: 0px;
    background: linear-gradient(90deg, rgb(221, 221, 221) 0%, rgb(138, 138, 138) 100%);
}

header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width:80%;
    margin:auto;
    border-radius: 20px;
    border-bottom-left-radius: unset;
    border-bottom-right-radius: unset;
    background: linear-gradient(100deg, rgb(184 0 91) 0%,rgb(126 5 195) 100%);
    color:white;
    text-shadow: black 1px 1px 3px;
    margin-top:0.5%;
}

nav {
    width:80%;
    margin:auto;
    background-color: black;
    color: white;
    display:flex;
    justify-content: space-around;
}
nav a {
    flex : 1;
    text-align: center;
    padding:0.5%;
    color:white;
}
nav a:hover{
    background-color: white;
    cursor:pointer;
    color:black;
    font-weight: unset;
}
a {
    color:black;
}
.galeryElement:hover {
    color:red;
    background-color:rgba(0,0,0,0.3);
}
article {
    width: 80%;
    margin:auto;
    background-color: white;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
article div#content {
    border:black 2px solid;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 1%;
    
}
.HeadName {
    font-family: "retrofunks";
    font-size:xxx-large;
    padding-top: 20px;
}

#galeryTags {
    border : red 1px solid;
    display:inline-block;
    width: 20%;
}

#galeryContent {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: normal;
    width: 79%;
    gap:10px;
}

.galeryElement {
    display: inline-block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 0;
    max-width: 200px;
    border-radius: 10px;
    padding:5px;
    border: purple 2px dashed;
    text-align: center;
}
.galeryElement img {
    max-width: 200px;
    max-height: 200px;
}
#booru {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
}

.xdebug-error, .xe-uncaught-exception {
    font-family:monospace;
}

.explicitMsg {
    width:fit-content;
    padding:1%;
    z-index:10;
    background-color:white; 
    border:1px solid black;
}