@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
:root {
    --text: #0f0f24;
    --background: #121212;
    --primary: #673a92;
    --secondary: #e2b6e1;
    --accent: #923a90;
    --grayblue: #7d8fb1;
    --gray: #acacac;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background: var(--background);
    color: var(--gray);

}



header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}


header .logo {
    color: var(--grayblue);
    font-weight: 700;
    text-decoration: none;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;

}
header #header-links a {
    color: var(--grayblue);
    margin-right: 50px;
    text-decoration: none;
}
.novelHead {
    text-decoration: none;
    color: var(--grayblue);
}
.wrapper {
    display: flex;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-top: 5%;
    height: 90%;
    width: 100%;
    color: var(--gray);
}



.ActualText {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}

.ActualText p {
    margin-bottom: 20px;
}

#TitleWrap {
    margin-bottom: 25px;
}

.ActualText span, a {
    font-weight: 500;
    color: var(--gray);
    text-decoration: underline;
}


#blodSpan {
    text-decoration: none;
    font-weight: 800;
}

.vertical-line {
    border-bottom: 2px solid var(--gray); /* You can adjust the thickness and color */
    height: 2px; /* Adjust the height of the line */
    width: 100%;
    margin: 0 10px; /* Add some margin for spacing if needed */
    margin-bottom: 20px;

}

@media screen and (min-width: 768px) {
    .ActualText {
        display: flex;
        flex-direction: column;
        width: 50%;
        padding-left: 0px;
    }
    
}