 * {
    margin: 0; padding: 0; box-sizing: border-box;
   }
 body {
        background-color: rgb(2, 221, 250); 
    }

header {
        text-align: center;
    }

h1 {
        font-size: 36pt;
        color:rgb(176, 3, 150);
        letter-spacing: 2px;
        text-shadow: 1px 2px 2px #015606;
        font-family: "Arimo";
    }
p {
        font-size: 12pt;
        font-weight: bold;
        font-family: verdana;
    }
nav a {
        color: #fc02ce; text-decoration: none;
        font-weight: bold;
        font-size: 16pt;
        display: inline-block;
        padding: 8px 12px;
    }
    
nav a:hover {
        color:yellow;
    }
p {
    color:rgb(172, 1, 211);
    text-align: left;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    line-height: 1.5;
    max-width: 70ch;
    
}

.photos {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 20px 0;
}

.photos img {
    width: 23%;
    height: auto;
    object-fit: cover;
    max-height: 200px;
    border-radius: 50%;
    box-shadow: 0 4px 4px gray;
}

footer {
    background-color: #333;
    color: aquamarine;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}