@font-face {
    font-family: 'AnjaEliane';
    src: url('assets/font/AnjaEliane.ttf');
    /* Include format('woff2') if you have a WOFF2 file */
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.centered-content {
    position: absolute;
    width: 90%;
    top: 5%;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    min-width: 300px; 
}

.centered-content h1 {
    font-size: 5vw;
    /*width: 100%;*/
    /*max-width: 100%;*/
    white-space: nowrap;
}

.colorPlate {
    position: absolute;
    width: 50%;
    height: 80%;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0);
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    margin: 10px;
}

nav ul li a {
    text-decoration: none;
    color: black;
}


.background-home {
    background: url('assets/img/bg/bg-min.jpg') no-repeat center center fixed;
    background-size: cover;
}

.background-games {
    background: url('assets/img/bg/white_noise.jpg') no-repeat center center fixed;
    background-size: cover;
}

.background-prints {
    background: url('assets/img/bg/white_noise.jpg') no-repeat center center fixed;
    background-size: cover;
}



.print-list {
    display: flex;
    flex-wrap: wrap; /* Så att objekten kan flöda till nästa rad */
    justify-content: space-around;
}

.print-item {
    flex: 0 0 30%; /* Varje item tar upp ungefär hälften av radens bredd */
    margin-bottom: 20px;
    text-align: center;
}

.print-item img {
/*    width: 100%;*/
    max-width: 250px;
/*    border: 10px dotted red;*/
    padding: 5px;
}

.print-item h2 {
    margin-top: 10px;
    font-size: 1.2em;
    max-width: 250px; /* Adjust as needed */
    margin-left: auto;
    margin-right: auto;
}



h1, h2 {
    font-family: AnjaEliane, sans-serif;
    color:red;
}

/*
@media screen and (max-width: 700px) {
    .centered-content {
        width: 80%;
    }
}
*/


