@import url(/util.css);

body {
    gap: 10px; 
}

.back {
    margin-top: 0; 
}


.sidebar {
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 5px; 
    padding-left: 10px; 
    padding-right: 10px;  
    position: relative;
}

.office-link {
    position: absolute;
    bottom: 10px; 
    left: 10px; 
    text-align: center;
    font-size: 12px;
    opacity: 40%;
    transition: all 0.3s ease;
}

.office-link:hover {
opacity: 100%; 
}

.link {
    text-decoration: underline;
}

.main-content {
    padding: 10px; 
    width: 500px;
    height: 500px; 
    max-height: 500px;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    gap: 10px; 
}

.blog-title {
    font-family: 'thin', sans-serif;
    font-size: 20px;
    margin-bottom: 10px; 
}

.blog-subheading {
    font-size: 17px;
    margin-bottom: 10px; 
    margin-top: 10px;
    font-family: 'thin', sans-serif;
}

.blog-paragraph {
    font-size: 15px;
    line-height: 1.2;
    margin-top: 10px;
}

.post {
    display: none;
}

.post.active {
    display: block;
}

.row {
    display: flex;
    gap: 20px; 
}

.col {
    display: flex;
    flex-direction: column;
    gap: 5px; 
}

.ipod {
    width: 160px;
}
