@font-face {
    font-family: 'Roboto-Black', sans-serif;
    src: url('./fonts/Roboto-Black.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-BlackItalic', sans-serif;
    src: url('./fonts/Roboto-BlackItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-Bold', sans-serif;
    src: url('./fonts/Roboto-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-BoldItalic', sans-serif;
    src: url('./fonts/Roboto-BoldItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-Italic', sans-serif;
    src: url('./fonts/Roboto-Italic.ttf') format('truetype');
    font-style: italic;
}

@font-face {
    font-family: 'Roboto-Light', sans-serif;
    src: url('./fonts/Roboto-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-LightItalic', sans-serif;
    src: url('./fonts/Roboto-LightItalic.ttf') format('truetype');
    font-style: italic;
}

@font-face {
    font-family: 'Roboto-Medium', sans-serif;
    src: url('./fonts/Roboto-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-MediumItalic', sans-serif;
    src: url('./fonts/Roboto-MediumItalic.ttf') format('truetype');
    font-style: italic;
}

@font-face {
    font-family: 'Roboto-Regular', sans-serif;
    src: url('./fonts/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-Thin', sans-serif;
    src: url('./fonts/Roboto-Thin.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-ThinItalic', sans-serif;
    src: url('./fonts/Roboto-ThinItalic.ttf') format('truetype');
    font-style: italic;
}

html {
    height: 100%;
    box-sizing: border-box;
}

*,
*:after,
*:before {
    box-sizing: inherit;
}

* {
    color: #F9FAF8;
    font-family: 'Roboto-Medium', sans-serif;    
}




.flex-container {
    display: flex;
    align-items: center;
}

.container {
    max-width: 800px;
    height: 500px;
    padding: 0 10px;
    margin: 0 auto;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}

#start {
    margin-top: 215px;
    margin-left: -65px;
    text-align: center;
    justify-content: center;
    color: #F9FAF8;
    min-width: 200px;
    min-height: 70px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 3vh;
    background-color: #3882F6;    
    border-radius: 4% 4% / 16% 20%;
    border-style: solid;
    border-color: #F9FAF8;
    border-width: 2px;
    height: 54px;
}

#start:hover {
  background-color: #7cf106;
  color: #1F2937;

}

