
        * {
            box-sizing: border-box;
        }

        @import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
        @import url("https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap");

        body {
            font-family: "Roboto", sans-serif;
            margin: 0;
        }

        .profile-pic {
            height: 240px;
            width: 240px;
            box-shadow:
                0 0 8px 0.5px #fff;
            margin-top: -180px;
            border-radius: 50%;
            border: 8px solid #0d0d0d;
        }

        .content {
            width: 100%;
            position: absolute;
            top: 50%;
            text-align: center;
            transform: translateY(-50);
            color: #DBDFFD;
        }

        .content h1 {
            color: #7978FF;
            font-weight: bold;
            font-size: 50px;
            margin-top: 10px;
            margin-bottom: 10px;
            text-shadow:
               3px 3px 0 #000,
             -1px -1px 0 #000,  
              1px -1px 0 #000,
              -1px 1px 0 #000,
               1px 1px 0 #000;
        }
        .content p {
            margin-left: 100px;
            font-weight: bold;
            margin-right: 100px;
            text-align: center;
            font-size: 20px;
            color: white;
            text-shadow:
               3px 3px 0 #000,
             -1px -1px 0 #000,  
              1px -1px 0 #000,
              -1px 1px 0 #000,
               1px 1px 0 #000;
        }

        .header-img {
            height: 190px;
            width: 100%;
        }

        .navbar {
            width: 100%;
            position: fixed;
            opacity: 0.9;
            overflow: hidden;
            background-color: #2e2e2e;
            margin-bottom: 50px;
        }

        .navbar a {
            float: left;
            display: block;
            color: #9BA3EB;
            text-align: center;
            padding: 20px 25px;
            text-decoration: none;
            margin-top: none;
            margin-bottom: none;
        }

        .navbar a.right {
            float: right;
            color: #9BA3EB;
        }

        .navbar ul li {
            text-decoration: none;
            list-style: none;
        }

        .navbar a:hover {
            background-color: #9BA3EB;
            color: #2e2e2e;
        }

        .row {
            display: -ms-flexbox;
            display: flex;
            align-content: center;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

        .name {
            margin-top: 20px;
            margin-bottom: 40px;
        }

        .art {
            height: 420px;
            width: 740px;
            border-radius: 10px;
            border: 6px solid #000;
        }

        .img {
            border-radius: 10px;
            border: 4px solid #242423;
        }
        .main {
            max-width: 100%;
            height: 100vh;
            background-image: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),url(background.jpg);
            background-size: cover;
            background-position: center;
        }

        .footer {
            overflow: hidden;
            padding: 10px;
            color: #9BA3EB;
            text-align: center;
            background: #383737;
            font-size: 10px;
        }

        @media only screen and (min-width: 210px) and (max-width: 480px) {

            .profile-pic {
                height: 200px;
                width: 200px;
            }
            .art {
                height: 220px;
                width: 370px;
                border-radius: 5px;
                border: 5px solid #000;
            }

            .content h1 {
                font-size: 30px;
            }
            .content p {
                margin-left: 50px;
                margin-right: 50px;
                text-align: center;
                font-size: 20px;
            }

            .header-img {
                height: 150px;
                width: 100%;
            }

            .main {
                max-width: 100%;
            }

            .underline {
                font-size: 25px;
                text-decoration: underline;
                text-align: center;
            }

            .navbar {
                font-size: 20px;
                opacity: 0.9;
                width: 100%;
                height: 8%;
                position: fixed;
                font-size: 10px;
                overflow: hidden;
                background-color: #2e2e2e;
            }

            .navbar a {
                float: left;
                display: block;
                color: #9BA3EB;
                text-align: center;
                padding: 20px 25px;
                text-decoration: none;
                margin-bottom: none;
            }

            .footer {
                overflow: hidden;
                padding: 10px;
                color: #9BA3EB;
                text-align: center;
                background: #383737;
                font-size: 10px;
            }

        }