        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }
        header {
            background-image: url('/nikolee.png');
            background-size: cover;
            text-align: center;
            padding: 50px 0;
            color: white;
      		text-shadow: #558ABB 1px 0 10px;
            font-size: 36px;
            height: 250px;
      		background-position: center;
        }
        .services {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin-top: 20px;
        }
        .service {
            width: 45%;
            background-color: #f2f2f2;
            padding: 20px;
            text-align: center;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        .works {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin-top: 20px;
        }
        .work {
            width: 28%;
            background-color: #f2f2f2;
            padding: 20px 20px 30px 20px;
            text-align: center;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        .work img{
            margin-bottom: 10px;
        }
        .text-block {
            padding: 20px;
      		margin: 40px;
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px 0;
            position: fixed;
            bottom: 0;
            width: 100%;
        }
      
      a {
      color: #558ABB;
      text-decoration: underline;
      }
      
       a:hover {
      text-decoration: none;
      }

        @media only screen and (max-width: 768px) {
            header {
                font-size: 24px;
                padding: 30px 0;
            }
            .services {
                flex-direction: column;
                align-items: center;
            }
            .service {
                width: 90%;
            }
            .works {
                flex-direction: column;
                align-items: center;
            }
            .work {
                width: 90%;
            }
        }