/* All devices receive the same styles */
@import url('./style.css');

/* fonts */

/* Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Golos */ 
@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&display=swap');

/* Staatliches */
@import url('https://fonts.googleapis.com/css2?family=Contrail+One&display=swap');

/* Mobile layout first */
@import url(mobile.css) screen and (max-width: 999px);

/* 1000px or more gets the desktop layout */
@import url(desktop.css) screen and (min-width: 1000px);

/* Reset margins and padding for all devices */
/* #volta * { margin: 0; padding: 0; } */

#volta {
    font-family: 'Inter';
}

#volta a {
    text-decoration: none;
}

#volta .hidden {
    display: none;
}