* {
    box-sizing: border-box;
    }
    
    body {
    margin: none;
    font-family: cursive;
    color: white;
    background: linear-gradient(to right, rgb(31, 33, 34) , rgb(106, 110, 110));   
    }
    
    .eye {
    margin: none;
    /* moves div content from left to center */
    justify-content: center;
    margin: 20px;
    text-align: center;
    display: flex;
    /* x axis align for each element in div */
    align-items: center;
    font-size: 3rem;
    }
        
    .container {
    display: grid;
    grid-template-columns: 1fr;
    font-size: 1.5rem;
    }
    
    a {
    display: flex;
    font-size: medium;
    text-decoration: none;
    cursor: pointer;
    color: white;
    max-width: fit-content;
    }
    
    a:visited {
    font-size: medium;
    cursor: pointer;
    color: aqua;
    margin: 20px;
    }
    
    a:hover {
    cursor: pointer;
    color: grey;
    }
    
    .para-div {
    margin: none;
    
    }
    
    .pic {
    margin-top: none;
    width: 600px;
    height: 500px;
    }
    
    .grc {
    margin-top: none;
    padding: 10px;
    /* x axis align for each element in div */
    align-items: center;
    }

    .png {
    width: 300px;
    height: 250px;
    padding: 10px;
    }
    
    .grc.deb-gif {
    width: 50px;
    }
    
    .gif {
    margin: 10px;
    }