
body {
    background-image: url(my-website/images/background.png);
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    margin: 30px;
    font-family: Courier New, Lucida Console, Monaco;
    scrollbar-color: aqua navy;
    scrollbar-width: thin;
    scroll-behavior: smooth;
    
}

::-webkit-scrollbar {
  width: 12px; /* width of scrollbar */
}

/* Handle (thumb) */
::-webkit-scrollbar-thumb {
  background-color: aqua; /* thumb color */
  border-radius: 6px; /* rounded corners */
}

/* Track */
::-webkit-scrollbar-track {
  background-color: navy; /* track color */
}

a {
    color:aqua;
    cursor: url(my-website/images/mousedisc.gif), pointer;
}

a:hover {
  color: #36a0e7;
}

html {
    cursor: url(my-website/images/mousedisc.gif), pointer;
}

.button {
    background: linear-gradient(to bottom, black 0%, navy 100%);
    color: aliceblue;
    border: aqua 1px solid;
    border-radius: 10px;
}

.button:hover {
    transform: scale(1.09);
    background-blend-mode: hard-light;
    transition: transform 0.3s ease;
}

.newblogoutercontainer {
    background: linear-gradient(to bottom, black 0%, navy 100%);
    color: aliceblue;
    border: aqua 1px solid;
    margin: auto;
    height: 800px;
    width: 900px;
    padding: 20px;
    text-align: left;
    opacity: 85%;
    display: grid;
    grid-template-rows: 100px 100px 100px 100px 100px 100px 100px 100px 100px 100px 100px;
    grid-template-columns: 100px 100px 100px 100px 100px 100px 100px 100px 100px 100px 100px;
    border-radius: 15px;
     box-shadow:  0 0 20px #0088f2;
}

.newblogbox {
    background-image: url(my-website/images/space.gif);
    color: aliceblue;
    border: aqua 1px solid;
    margin: 5px;
    text-align: center;
    opacity: 85%;
    border-radius: 15px;
    background-color: rgba(0,0,0,0.6);box-shadow:  0 0 20px #0088f2;
}

#newblogbox1 {
    grid-row: 1 / 3;
    grid-column: 1 / 3;
    padding: 10px;
}

#newblogbox2 {
    grid-row: 3 / 9;
    grid-column: 1 / 3;
    padding: 10px;
}

#newblogbox3 {
    grid-row: 1 / 9;
    grid-column: 3 / 8;
    padding: 20px;
    overflow: scroll;
}

#newblogbox4 {
     grid-row: 1 / 6;
    grid-column: 8 / 10;
}

#newblogbox5 {
   grid-row: 6 / 9;
    grid-column: 8 / 10;
    padding: 10px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center;
    align-items: center;
}

.newentry {
    border: aqua 1px solid;background: linear-gradient(to bottom, black 0%, navy 100%);
    text-align: left;
    border-radius: 15px;
    font-size: 12px;
    margin-bottom: 15px;
    background-color: rgba(0,0,0,0.6);box-shadow:  0 0 20px #0088f2;
    
}

.newentrytitle {
    border-bottom: aqua 1px solid;
    margin: 0;
    padding: 0;
    
}

.newentrytitle p {
    margin: 10px; 
    font-size: 14px;
    
}

.newblogparagraph {
    padding: 1px;
    margin: 15px;
    border-radius: 15px; 
    font-size: 13px;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Track color */
  border-radius: 8px; /* Rounded corners */
}

.newblogimage {
    max-width: 250px;
    max-height: auto;
    margin: 20px;
}
