@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;

    /* TEXT */
    font-family: Montserrat, serif;
    text-decoration: none;
    color: white;
    --black-color: #101013;
    --link-color: #0070E0;
    --link-size: 16px;
    font-weight: 300;

    /* MARGINS */
    --gutter-margin: 60px;

    /* BOX SHADOW */
    --default-box-shadow: 0 0 20px 0 rgba(0, 0, 0, .2);

    /* SMOOTH AUTO SCROLLING */
    scroll-behavior: smooth;
}

@media (width <= 1200px) {
    * {--gutter-margin: 10px;}
}

a {
    font-size: var(--link-size);
}

p {
    max-width: 100vw;
}

input {
    box-sizing:border-box;
    font-size: 16px;
    font-weight: 400;
    border-color: var(--black-color);
    border-style: solid;
    border-width: 1px;
} 
input:focus {
    outline-width: 0;
}

textarea {
    box-sizing:border-box;
    font-size: 16px;
    font-weight: 400;
    border-color: var(--black-color);
    border-style: solid;
    border-width: 1px;
    color: var(--black-color);
    padding-left: 10px;
}

textarea:focus {
    outline-width: 0;
}

.link {
    height:fit-content;
    width: min-content;
}

.link:hover .underline {
    display:block;
    width: 100%;
}

.link .underline {
    margin-top: 3px;
    background-color: transparent;
    transition-duration: .4s;
    width: 0%;
    height:3px;
    background-color: white;
}

.button {
    padding-top: 15px; padding-bottom: 15px;
    padding-left: 30px; padding-right: 30px;
    background-color: transparent;
    border-color: white;
    border-style: solid;
    border-width: 1px;
    text-align: center;
    width: fit-content;
    transition-duration: .2s;
}

.button:hover {
    background-color: white;
    color: var(--black-color);
    border-color: white;
}

.button2 {
    padding-top: 15px; padding-bottom: 15px;
    padding-left: 30px; padding-right: 30px;
    background-color: transparent;
    border-color: var(--black-color);
    color: var(--black-color);
    border-style: solid;
    border-width: 1px;
    text-align: center;
    width: fit-content;
    transition-duration: .2s;
}

.button2:hover {
    background-color: var(--black-color);
    color: white;
    border-color: var(--black-color);
    cursor:pointer;
}

.input-field {
    height: 40px; 
    color: var(--black-color); 
    border-color: var(--black-color); 
    width: 300px; 
    padding-left: 10px;
}

.paragraph p {
    color: var(--black-color);
}

.paragraph li {
    color: var(--black-color);
}

.blog-thumbnail {
    transition-duration: .4s;
}

.blog-thumbnail:hover {
    transition-duration: .4s;
    box-shadow: var(--default-box-shadow);
    scale: 1.05;
    padding: 10px;
}

li {
    color: var(--black-color);
}

#open-sidebar .bar {
    background-color: white;
    height: 2px;
    margin-bottom:6px;
    width:30px;
    border-radius: 12px;
}

#open-sidebar {
    display: grid;
    width:max-content;
}

#close-sidebar {
    width: max-content;
    display:inline-flex;
}

#close-sidebar .bar {
    background-color: white;
    height: 2px;
    width:30px;
    border-radius: 12px;
}

#sidebar {
    flex-wrap: wrap;
}

#sidebar a {
    height: min-content;
}


#sidebar::before {
    content: "\a\a";
    white-space: pre;
}

#sidebar a::after{
    content: "\a\a";
    white-space: pre;
}