@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat-VariableFont_wght.ttf);
}

@font-face {
    font-family: "Lora";
    src: url(../fonts/Lora-VariableFont_wght.ttf);
}

body {
    padding : 0;
    margin : 0;
    box-sizing: border-box;
    background-color: #38222C;
}

.page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.writing-section {
    background-color: #341121;
    width: 51vw;
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
    align-items: center;   
}

.title-name {
    font-size: 3rem;
    font-family: "Montserrat";
    font-weight: 700;
    color: pink;
    opacity: 0.3;
}

.main-content {
    font-family: "Lora";
    color: rgb(181, 168, 168);
    font-size: 1.3rem;
    padding : 0 0.5rem 0 0.5rem;
}

@media (max-width: 768px){
    .writing-section {
    background-color: #341121;
    width: 87vw;
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
    align-items: center;  
    }
    .title-name {
        font-size: 3rem;
    }
}