/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {text-align:center;
      color:#ffd447;
      background-image:url("https://cherry-cakee.neocities.org/ZepAssets/ZepBG2.png");
      background-size:cover;
      background-repeat:repeat;
      }
      
   .fancy{
        background: linear-gradient(to top, #ff9900 2%, #ffd447 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke-width: 0.5px;
        -webkit-text-stroke-color: #ffd447;}
        
     a:link {color:#ff8186;}
     a:hover{color:#ff003c;}
     
    #container {
      overflow: scroll;
      overflow-x: hidden;
      width: 20em;
      height: 10em;
      padding: 1rem;
      border: 3px dotted #000;
    }
    
    div {
      background-color:#007c76;
      margin-top:10px;
      margin-left:300px;
      margin-right:300px;
      margin-bottom:10px;
      border:5px solid #ff9900;
      }
      
    .circle-img {
      width: 150px;       
      height: 150px;      
      border-radius: 50%;
      object-fit: cover; 
    }
    
    .small-c {
      width: 70px;       
      height: 70px;      
      border-radius: 50%;
      object-fit: cover; 
      }
      
    html,body{
      user-select: none; /* supported by Chrome and Opera */
   -webkit-user-select: none; /* Safari */
   -khtml-user-select: none; /* Konqueror HTML */
   -moz-user-select: none; /* Firefox */
   -ms-user-select: none; /* Internet Explorer/Edge */
  }