$mapWidth: 1920px;
$mapHeight: 1080px;

body, html{
    width: $mapWidth;
    height: $mapHeight;
}

@function getFontShadow($color, $width) {
    @return 0 $width $color, 0 0-$width $color,
    $width $width $color,
    0-$width $width $color,
    0-$width 0-$width $color,
    $width 0 $color,
    $width $width $color,
    0-$width 0 $color
}

@function white($opacity) {
    @return rgba(255, 255, 255, $opacity);
}

@function black($opacity) {
    @return rgba(0, 0, 0, $opacity);
}

:export {
    ProjectWidth: $mapWidth;
    ProjectHeight: $mapHeight;
}
