@font-face {
    font-family: 'Nunito';
    src: url('../../fonts/Nunito/Nunito-VariableFont_wght.ttf') format('truetype');
}

@font-face {
    font-family: 'Oswald';
    src: url('../../fonts/Oswald/Oswald-VariableFont_wght.ttf') format('truetype');
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito";
}

body {
    background-color: #020202;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #000000 inset !important;
    box-shadow: 0 0 0 1000px #000000 inset !important;
    -webkit-text-fill-color: #29C8FF !important;
}

input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #000000 inset !important;
    box-shadow: 0 0 0 1000px #000000 inset !important;
}

/* Firefox */
input:-moz-autofill {
    box-shadow: 0 0 0 1000px #000000 inset !important;
    -moz-text-fill-color: #29C8FF !important;
}

.homeFooter {
    width: 88%;
    height: 65px;
    display: flex;
    align-items: center;
    margin: auto;
}

.homeFooterText {
    text-align: center;
    color: #AEAEAE;
}

.buttonSecondary{
    border: 0;
    background-color: #F7931E;
    color: white;
    padding: 10px 16px;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
}

.buttonSecondaryBlue {
    border: 0;
    background-color: #29C8FF;
    color: white;
    padding: 10px 16px;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
}

@media (max-width: 500px) {
    body {
        display: flex;
        flex-direction: column
    }
}