body {
    background: rgb(82, 82, 82);
    background: url('https://i.pinimg.com/736x/e7/55/df/e755df7d91a88d1c8f1fd3fb4655ab2e.jpg') fixed;
    background-size: cover;
    background-blend-mode: darken;
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.background-image {
    filter: blur(5px);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.floating {
    animation: floating 3s infinite ease-in-out;
    margin-left: 30px;
    margin-top: 5px;
    color: white;
}

@keyframes floating {
    0% { transform: translate(0, 0); }
    50% { transform: translate(0, 15px); }
    100% { transform: translate(0, 0); }
}

.floating:hover {
    opacity: 0.7;
}

.head {
    color: white;
}

p {
    outline-color: red;
}

p.dotted {
    outline-style: dotted;
}

p.dashed {
    outline-style: dashed;
}

p.solid {
    outline-style: solid;
}

p.double {
    outline-style: double;
}

p.groove {
    outline-style: groove;
}

p.ridge {
    outline-style: ridge;
}

p.inset {
    outline-style: inset;
}

p.outset {
    outline-style: outset;
}

.topnav {
    background-color: #333;
    overflow: hidden;
}

.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    background-color: #000000;
    color: white;
}

.header {
    padding: 60px;
    text-align: center;
    background: #000000;
    color: white;
    font-size: 30px;
}

h1 {
    color: white;
    background-color: rgba(0, 0, 0, 0.874);
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.62);
    color: white;
    text-align: center;
}
