You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

124 lines
4.0 KiB
Vue

<style scoped>
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Poppins&family=Raleway&family=Work+Sans:wght@900&display=swap');
* {
border: 0px black solid;
background-color: #fff5f5;
}
body {
background-color: #fff5f5;
min-height: 100vh;
}
.about-text {
padding-right: 50px;
padding-top: 40px;
font-family: 'Poppins', sans-serif;;
font-size: 15px;
padding-left: 20px;
padding-bottom: 40px;
}
a:hover {
color: #333042;
text-decoration: none;
}
a {
color: #ff4c2b;
}
.container_width {
max-width: 100%;
padding-left: 0px;
padding-right: 0px;
padding-top: 70px;
}
#footer {
margin-top: 14em;
margin-left: 30px;
font-family: 'Poppins', sans-serif;
margin-bottom: 3em;
}
.title_story {
font-size: 80px;
font-family: 'Work Sans', sans-serif;
padding-left: 20px;
padding-top: 70px;
color: #333042
}
@media (max-width: 575px) {
.title_story {
font-size: 30px;
}
}
</style>
<template>
<b-container fluid class="p-0">
<MenuBar/>
<b-row>
<b-col md="8">
<p class="title_story">Open Call Magiun #3 - Deadline extended!</p>
</b-col>
</b-row>
<b-row class="about-text">
<b-col md="6">
<p>There is a relatively new genre of vlogs on YouTube - mostly silent videos in which people perform their daily routines oriented around the household. Some of them, the ones I tend to watch, show people waking up, making breakfast, watering their plants, cleaning up, lunch, dinner, bed and repeat. I can't stop watching.</p>
<p>
What people eat when they are home, alone or not, has always fascinated me. Not the meals made pretty for a vlog, but those that come in people's weekly rotation, the breakfast made routinely on a Saturday morning, the dinner prepared out of habit after a long day, the meal one most expects when going back home. This is where it gets exciting for me.</p>
<p>
The word routine often comes up in association with others like 'boring' or 'drudgery' or 'tedious'. But routines are part of the dynamic of our daily lives. They are personal and can be a real act of care towards ourselves and others. They embody our experiences and our environment, and are therefore an inexhaustible source for self-reflection.</p>
<p>
For the 3rd issue of Magiun, I want to talk about routines, habits and rituals around food, comforting or restricting, old or still to come, intentional or mindless. Please send your contributions to hello@magiun.online by October 22nd.
All selected contributions will be offered a fee.
</p>
<!--
<p>
Back in Spring, nobody wanted to imagine we'd be in a similar situation months later. Now, we find ourselves in the winter of 2020. We have limited opportunities to hang out and share food with our friends and families or to celebrate pretty much anything. Even though we've had months to prepare, it's still hard to keep it together.</p>
<p>
On top of it all, there's a new challenge - getting ourselves in the right state of mind to spend the holidays far away from our loved ones. How have the last few months of adapting to a new way of life prepared us for the last push of the year? How much of what we're used to eating and experiencing are we going to try and recreate this winter? What will be new, or missing?</p>
<p>
The second issue of Magiun is about adapting - as a coping mechanism, a way of learning or a creative way of moving forward. Whether you've adapted your expectations, taste, or methods, or failed in the process of adapting, I'd like to hear from you. Send your submissions until the 14th of February (text, image and anything in between) to hello@magiun.online</p> -->
</b-col>
<b-col md="6"></b-col>
</b-row>
<b-row>
<p id="footer"><a href="/firstissue">Read the first issue</a></p>
<p id="footer"><a href="/">Read the second issue</a></p>
</b-row>
</b-container>
</template>
<script>
import MenuBar from './MenuBar'
export default {
name: 'OpenCallPage',
components: {
MenuBar
}
}
</script>