/*Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600&display=swap');


.blogArchive{
    border-width: 5px;
    border-color: black;
}

.scroll {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5px;
    margin-top: 5px;
    width: 50%;
    height: 400px;
    overflow-y: scroll;
    font-size: 15px;
    background-color: black;
    scrollbar-width: 5px;
    scrollbar-color: darkgrey;
}

.blogtitle{
    font-size: 25px;
    border-width: 2px;
    border-color: darkslateblue;
    font-family: 'Caveat', cursive;
    font-weight: bolder;
}

.btn {
    cursor: pointer;

        font-family: monospace;
        position: fixed;
        top: 15px;
        right: 20px;
        background-color: #231f20;
        height: 20px;
        width: 55px;
        color: #ffffff;
        font-size: 20px;
        box-shadow: 0 0px 20px rgba(0, 0, 0, 0.6);
        border-top-left-radius:25px;  
        border-top-right-radius:25px;  
        border-bottom-right-radius:25px;  
        border-bottom-left-radius:25px;
  }
  .btn:hover{
    opacity: 0.5;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;

  }
  @media only screen and (max-width: 1200px) {
    .btn {    
        cursor: pointer;
        font-family: monospace;
        position: fixed;
        top: 15px;
        left: 40%;
        background-color: #231f20;
        height: 35px;
        width: 70px;
        color: #ffffff;
        font-size: 28px;
        box-shadow: 0 0px 20px rgba(0, 0, 0, 0.6);
        border-top-left-radius:25px;  
        border-top-right-radius:25px;  
        border-bottom-right-radius:25px;  
        border-bottom-left-radius:25px;
    
    
  
    
    } 
}

 a:link {
     color: darkslateblue;
}

 a:visited {
     color: rgb(59, 49, 124);
 }

 a:hover {
     background-color: darkslateblue;
 }
.blogtext{
    font-size: 12px;
    font-family: Helvetica;
    word-break: normal;
}

.buttons{
    display: inline;
    float: inline-start;
    margin: 10px;
    background-color: lightslategrey;
    font-size: 20px;
    border-radius: 5px; 
}

.hidden{
    visibility: hidden;
    overflow: none;
}

.bloglist{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    clear: both;
}

.hellotext{
    overflow: none;
}

.Archives {
    flex-direction: column;
    justify-content: flex-start;
    height: 100vh;
    overflow-y: scroll;
    width: 10%;
    background-color: rgb(36, 34, 34);
}

.blog{
    clear: both;
}

body, html{
    margin: 0;
    padding: 0;
    background-image: url(folderbackground.jpg);
    background-repeat: repeat;
    overflow: none;
}

@media only screen and (max-width: 1200px) {
    .Archives {
        flex-direction: column;
        justify-content: flex-start;
        height: 100vh;
        overflow-y: scroll;
        width: 17%;
        background-color: rgb(36, 34, 34);
    }

    .scroll {
        width: 55%;
        height: 500px;
    }
}