* {
    box-sizing: border-box;
    }
    
    body {
    /* overflow-y: hidden; Hide vertical scrollbar */
    /* overflow-x: hidden; Hide horizontal scrollbar */
    /* this gets rid of the 100% view scroll bar */
    overflow: hidden; 
    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 2fr;
    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; */
    max-width: fit-content;
    }
    
    .sands-text{
    /* color: aqua; */
    max-width: fit-content;
    }

    .pic {
    margin-top: none;
    width: 600px;
    height: 500px;
    }
    
    .grc {
    max-width: fit-content;
    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;
    }