﻿* {
    padding: 0;
    margin: 0;
}

body.ProjectPage {
    background-color: black;
    font-family: Arial, sans-serif;
    margin: 0;
    color:black;
  
}

h1 {
    text-align: center;
    color: white;

}
h2 {
    text-align: center;
    color: white;
}

p
{
    color:white;
}

ul {
    list-style: none;
    background: #808080;
}

    ul li {
        display: inline-block;
        position: relative;
    }

        ul li a {
            display: block;
            padding: 20px 25px;
            color: white;
            text-decoration: none;
            text-align: center;
            font-size: 20px;
        }

        ul li ul.DropDowns li {
            display: block;
        }

        ul li ul.DropDowns {
            width: 100%;
            background: #808080;
            position: absolute;
            z-index: 999;
            display: none;
        }

        ul li a:hover {
            background: #333;
        }

        ul li:hover ul.DropDowns {
            display: block;
        }


.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
}

.box {
    background-color:black;
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    
}

    .box h2 {
        margin-top: 0;
    }

    .box a {
        display: inline-block;
        margin-top: 10px;
        color:black;
        text-decoration: none;
      
        
    }

        .box a:hover {
            text-decoration: underline;
        }


