@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Bold.ttf');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Italic.ttf');
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-BoldItalic.ttf');
    font-weight: bold;
    font-style: italic;
}

div {
    font-family: Roboto;
    font-weight: bold;
    font-style: italic;
}

body,
body * {
    margin: 0;
    padding: 0;
    vertical-align: top;
    box-sizing: border-box;
}

body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS',
        sans-serif;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1000px;
    margin: 20px calc(50% - 500px);
}

@media (max-width: 1100px) {
    .container {
        width: 800px;
        margin: 20px calc(50% - 400px);
    }
}

@media (max-width: 900px) {
    .container {
        width: 600px;
        margin: 20px calc(50% - 300px);
    }
}

@media (max-width: 700px) {
    .container {
        width: 400px;
        margin: 20px calc(50% - 200px);
    }
}

@media (max-width: 460px) {
    .container {
        width: 100%;
        margin: 20px 0;
    }
}
