/* CSS Document */
body{
    color: White;
    background: linear-gradient(45deg, #310c15, #310e1e, #2e1226, #2a162d, #241b32, #1d1f35, #162236, #102536, #0c2834, #0c2a31);
    font-family: TimesNewRoman;
    font-size: 22px;
    font-weight: 200;
    text-align: Left;
}

.picture-frame {
            width: 450px;
            display: inline-block;
            border: 2px solid White;
            padding: 5px;
            margin: 10px;
            border-radius: 5px; 
}

.picture-frame img {
            display: block;
            max-width: 100%; 
            height: auto; 
            border-radius: 5px; 
}

.picture-caption {
            text-align: center; 
}

header{
    color: white;
    text-align: Center;
    font-family: TimesNewRoman;
    font-size: 40px;
    font-weight: 300;
    border-radius: 5px;
}

a {
  text-decoration:none;
}

nav{
    font-family: TimesNewRoman;
    text-align: Center;
    padding: 20px 20px;       
}

nav a{
    color: White;
    font:  25px TimesNewRoman;
    padding: 22px 10px;
    text-decoration: none;
    transition: background-color 1s ease;
    border-radius: 5px;
}

nav a:hover{
    color: White;
    background: #1BBB9B;
}

.box {
    padding: 20px; 
    border: 2px solid White;
    margin: 20px auto;
    color: White;
    font-size: 20px;
    line-height: 1.5;
    border-radius: 5px;

}

table, th, td {
        width: 100%;
        border: 3px solid White;
        padding: 8px;
        text-align: left;
        color: white;
}

footer {
        color: White;
        text-align: center;
        padding: 20px;
        bottom: 30px;
        border-radius: 5px;
 }


