* {
    padding: 0px;
    margin: 0px;
}

html {
    background-color: rgb(44, 44, 44);
    scroll-behavior: smooth;
}

body {
    background: #e3e3e3;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

main {
    background-color: aliceblue;
    margin-top: 8px;
}

/* Main Blog home page Header */
#main-header {
    background-image: url('../assets/');
    background-color: #0b273a;
    color: #ffffff;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 76vh;
    margin: auto;
    margin-bottom: 24px;
    overflow: wrap;
    padding: 12px clamp(8px, 3%, 16px) 24px;
    text-align: center;
    width: auto;
}
#main-header h1 {
    font-size: clamp(1.8em, 5vw, 3.2em);
    margin-bottom: 10px;
    margin: 0px auto;
    overflow: wrap;
    padding: clamp(8px, 2vw, 16px);
    text-align: center;
    width: clamp(50px, 80%, 900px);
}
#main-header p {
    font-size: clamp(0.9em, 2.5vw, 1.2em);
    margin-top: 10px;
    overflow: wrap;
    text-align: center;
    width: clamp(50px, 64vw, 960px);
}

/* Header for Blog Posts */
#blog-header {
    background-color: #0b273a;
    color: #e7eaed;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 76vh;
    margin: auto;
    margin-bottom: 24px;
    overflow: wrap;
    padding: 12px clamp(8px, 3%, 16px) 24px;
    text-align: center;
    width: auto;
}
#blog-header h1 {
    font-size: clamp(32px, 6vw, 56px);
    width: clamp(50px, 60vw, 760px);
    -webkit-text-stroke: 1px rgba(45, 45, 45, 0.516);
}
#blog-header p {
    font-size: clamp(18px, 4vw, 30px);
}

#back {
    font-size: clamp(18px, 20vw, 26px);
    margin-bottom: 4px;
    position: relative;
    left: 13%;
    width: fit-content;
}
#back i {
    font-size: 30px;
}
#back a {
    color: black;
    text-decoration: none;
}
#back a:hover {
    color: rgb(23, 51, 151);
    cursor: pointer;
    transition: 150ms;
}

.hidden {
    display: none !important;
}

.code {
    background-color: rgba(102, 102, 102, 0.3);
    border-radius: 4px;
    font-family:'Courier New', Courier, monospace;
    font-weight: bold;
    padding-left: 4px;
    padding-right: 4px;
}

/* JUMP TO TOP BUTTON */
#jump-to-top {
    align-items: center;
    background-color: #0b273a;
    border: none;
    border-radius: 50%;
    bottom: 20px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    font-size: 24px;
    height: 50px;
    justify-content: center;
    position: fixed;
    right: 20px;
    width: 50px;
    z-index: 1000;
}
#jump-to-top:hover {
    color: rgba(99, 99, 138, 0.754);
    cursor: pointer;
    transition: 120ms;
}

