body {
    font-family: arial;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-image: url("../pic/bg2.png");
    background-attachment: fixed;
    background-position-y: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    color: rgb(250,250,250);
    
}

#background {
    background-color: rgba(250,250,180,0.15);
    margin: -1em 0 0 -1em;
    padding: 1em;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 0;

}

a {
    text-decoration: none;
    color: #333333;
}

p {
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
}

h1 {
   font-size: 200%;
   padding: 0 0 0 0.5em;
   color: rgb(250,250,250);
   text-shadow: 1px 1px 10px rgb(0,0,0);
}

header {
    background-color: rgba(50,50,50,0.5);
    margin: 1em;
    padding: 1em;
    width: 75%;
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
    align-items: center;
}

header img {
    width: 10%;
    min-width: 60px;
    min-height: 60px;
    height: 10%;
    box-shadow: 0px 0px 5px rgb(250,250,250);
    margin: 0.5em;
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    width: 100%;
}


main {
    width: 75%;
    height: auto;
    padding: 1em;
    background-color: rgba(50,50,50,0.5);

}


#Caches{
    display: flex;
    justify-content: space-around;

}

.cachebox:hover {
    background-color: rgba(255,150,0,0.8);
    transition: background 0.3s ease-in-out;
}

.cachebox {
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    border-radius: 10px;
    width: 25%;
    background-color: rgba(250,250,250,0.9);
    transition: background 0.3s ease-in-out;
    margin: 3em 0 8em 0;
}
.cachebox img {
    width: 50px;
    
}
.cachebox a {
    text-align: center;
    width: 100%;
}