@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
:root {
    --primary: #505677;
    --bg: #fff;

    --secondary: #53b2d5bf
}
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--primary)
}
header {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100vw;
    margin-top: 50px;
}
nav {
    margin: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100vw - 80px - 20px);
    height: 70px;
    background-color: var(--bg);
    box-shadow: 10px 10px 21px 0px rgba(0,0,0,0.39), -10px -10px 21px 0px rgba(255,255,255,0.29);
    padding: 0 40px;
    position: fixed;
    z-index: 100;
}
.title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}
.nav-links {
    list-style: none;
}
.nav-link {
    float: left;
    margin: 0 0 0 20px;
}
.link {
    text-decoration: none;
    color: var(--primary);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 10px 10px 21px 0px rgba(0,0,0,0.39), -10px -10px 21px 0px rgba(255,255,255,0.29);

}
.link:hover {
    color: var(--bg);
    background-color: var(--primary);
    box-shadow: 10px 10px 21px 0px rgba(0,0,0,0.39), -10px -10px 21px 0px rgba(255,255,255,0.29);
}
main {
    margin-top: 50px;
}
.centered-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.welcome-image {
    background-image: url("assets/bg.jpg");
    background-size: cover;
    background-position: center;
    height: calc(100vh - 160px);
    width: calc(100vw - 20px - 50px);
    padding: 25px;
    border-radius: 10px;
    color: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.welcome-image h3 {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    font-style: italic;
    margin: 5px 0;
}
.welcome-image h1 {
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    margin: 5px 0;
}
.content-wrapper {
    margin: 10px;
}
.article-image {
    background-image: url("assets/bg.jpg");
    background-size: cover;
    background-position: center;
    height: 100px;
    width: calc(100% - 40px);
    border-radius: 10px;
    margin-bottom: 20px;
    color: var(--bg);
    padding: 20px;
    position: relative;
}
.article-image .content {
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.article-image h1 {
    font-size: 30px;
    font-weight: 600;
    margin: unset;
    padding: unset;
}
.small {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin: unset;
    padding: unset;
}
section {
    padding: 10px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow:  -11px 11px 18px #c3c3c3,
    11px -11px 18px #e1e1e1;
}
.two-column {
    display: flex;
    align-items: center;
    flex-direction: row;
    max-width: 100%;
}
.right {
    width: 100%;
    margin: 0 10px;
}
.left {
    width: 300px;
    margin: 0 10px;
}
.img {
    border-radius: 10px;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .two-column {
        flex-direction: column;
    }
    .left {
        width: 100%;
        margin: 0;
    }
    .right {
        width: 100%;
    }
    .img {
        width: 100%;
    }
    
}
.on-click-reader {
    border: 1px solid var(--primary);
    margin: 20px 0;
    padding: 10px;
    border-radius: 10px;
}
.on-click-reader-toggle {
    all: unset;
    cursor: pointer;
}
.on-click-reader-title a {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0;
}
.on-click-reader-content {
    display: none;
}
.on-click-reader-content.active {
    display: block;
}
.button {
    all: unset;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: var(--bg);
    color: var(--primary);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    box-shadow: 10px 10px 21px 0px rgba(0,0,0,0.39), -10px -10px 21px 0px rgba(255,255,255,0.29);
    box-shadow: inset 0 0 0 0 var(--primary);
    transition: all 0.3s ease-in-out;
}
.button:hover {
    color: var(--bg);
    box-shadow: 10px 10px 21px 0px rgba(0,0,0,0.39), -10px -10px 21px 0px rgba(255,255,255,0.29);
    box-shadow: inset 200px 0 0 0 var(--primary);
}