/* Styling home page */
        body{
            font-family: Times;
            background-color:rgb(121, 163, 247);
            color:white;
            margin:auto;
        }
        header{

            height:400px;
            padding: 100px;
            text-align:center;
            font-size: 20px;
            color:white;
        }
        * {
              box-sizing: border-box;
        }
        article {
          float: left;
          padding: 100px;
          font-size:23px;
          text-align:center;
          color:white;
          width: 100%;
          height: 1000px;
        }
        section::after {
          content: "";
          display: table;
          clear: both;
        }
        footer {
          padding: 10px;
          text-align: center;
          color: white;
        }
        .column {
          float: left;
          width: 33.33%;
          padding: 30px;
          height: 350px; 
          position:inherit;
          border-radius: 25px;

        }
        .row:after {
          content: "";
          display: table;
          clear: both;
        
        }
        .nav{
            color: white;
            text-align:center;
            font-size:30px;
        }
        .bg{            
            background-image:url("../naranjn.jpg");
            background-repeat: no-repeat no-repeat;
            background-size:contain;}
        .aboutme {
            height:30%px;
            width:45%;
            margin:10%;
            font-size:20px;
            }
        a:link {
          color: white;
        }
        
        /* visited link */
        a:visited {
          color: white;
        }
        
        /* mouse over link */
        a:hover {
          color: black;
        }
        
        /* selected link */
        a:active {
          background-color: #4775ff;
        }
        .contactdiv{
            width:100%;
            height:50px;
            padding:60px;
            color:rgb(121, 163, 247);
            background-color:rgb(94, 128, 173);
            margin:20px;
            text-align:center;
        }
        footer {
            position:inherit;
            bottom:0;
            right:0;
            width:100%;
          background-color:rgb(123, 160, 219);
          padding: 10px;
          text-align: right;
          color: white;
        }