44 lines
870 B
SCSS

@font-face {
font-family: "Gotham Bold";
src: url("../fonts/goth_bold.ttf") format("truetype");
}
@font-face {
font-family: "Gotham Book";
src: url("../fonts/goth_book.ttf") format("truetype");
}
@font-face {
font-family: "Gotham Light";
src: url("../fonts/goth_light.ttf") format("truetype");
}
@font-face {
font-family: "Gotham Medium";
src: url("../fonts/goth_medium.ttf") format("truetype");
}
@font-face {
font-family: "Gotham Condensed Medium";
src: url("../fonts/goth_cond_medium.otf") format("opentype");
}
* {
margin: 0;
padding: 0;
background-color: white;
width: 100vw;
height: 100vh;
overflow: hidden; /* Safari */ /* IE 10 and IE 11 */
user-select: none; /* Standard syntax */
}
.container {
background-image: none;
background-color: blue;
width: 100%;
height: 100%;
display: flex;
flex-direction: row;
}