
        /* header */

        h1 {
            margin: 0px;
         }

         #headline {
            text-align: center;
            margin-top: 20px;
            color: #3a2618;
            text-transform: uppercase;

         }
        
         #header {
            text-align: center;
            background-color: #3a2618;
            margin-bottom: 0px;
        }
        
        a {
            text-decoration: none;
            color: #f0ead2;
            font-family:Georgia, 'Times New Roman', Times, serif;
        }

        /*header päättyy*/

        /* navbar */

        .navbar {
            background-color: #3a2618;
            margin-top: 0px;
            font-family:Arial, Helvetica, sans-serif;
        }
        
        .navbar a {
            color: #f0ead2;
        }
        
        .navbar a:hover {
            color: #f0ead2;
        }
        
        @keyframes shadow {
            to {
                box-shadow: 0 0 20px rgb(221, 229, 182)
            }
        }
        
        li:hover {
            animation-name: shadow;
            animation-duration: 1s;
            animation-fill-mode: forwards;
        }

        .navbar-toggler {
            background-color: #f0ead2; 
        }
        
        /*navbar päättyy*/        

       /* footer */

       section{
        padding: 20px;
    }
    
    .footer{
        background-color: #3a2618;
        text-align: center;
        padding: 10px;
        grid-template-columns: repeat(auto-fit, minmax(200px, auto));
        gap: 3.5rem;
        left: 0;
        right: 0;
        bottom: 0;
        margin-top: auto;
    }
    
    .footer-content h4{
        color: #f0ead2;
        font-size: 20px;
        margin-bottom: 1rem;
    }
    
    .footer-content li{
        margin-bottom: 15px;
        display: block;
    }
    
    .footer-content li a{
        color: #f0ead2;
    }
    
    .footer-content p{
        color: #f0ead2;
    }
    /*footer päättyy*/

    @media only screen and (max-width: 800px) {
        header {
            padding: 10px;
        }
    
        nav ul li {
            display: block;
            margin-bottom: 10px;
        }
    
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background-color: #f0ead2;
    }

    .game-content {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f0ead2;
        min-height: 85vh;
        gap: 50px;
    }

    .drag {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 320px;
        gap: 10px;
        cursor: grab;
    }

    .drag .dragBox {
        position: relative;
        width: 100px;
        height: 100px;
        background: #0003;
    }

    .images {
        position: relative;
        width: 100%;
        height: 100%;
        background: var(--img);
        background-size: cover;
    }

    .reset {
        padding: 15px 25px;
        border: none;
        background: #3a2618;
        color: #f0ead2;
        font-size: 1em;
        font-weight: 500;
        text-transform: uppercase;
        cursor: pointer;
    }

    .board {
        position: relative;
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 10px;
    }

    .dropBox {
        position: relative;
        width: 140px;
        height: 140px;
        background: #0003;

    }

    .scorebutton {
        padding: 15px 25px;
        border: none;
        background: #3a2618;
        color: #f0ead2;
        font-size: 1em;
        font-weight: 500;
        text-transform: uppercase;
        cursor: pointer;
    }

    #rome_points {
        text-align: center;
        font-family:Georgia, 'Times New Roman', Times, serif;

    }
    