
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

html {
    font-size: 18px;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #FBEAEB;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.navbar {
    background-color: #2F3C7E !important;
}

.jumbotron {
    background-color: #f8f9fa; /* Light grey color */
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    border-radius: 0.3rem;
     font-size: 18px; /* Keeps the larger base font size */
}
.btn-tictactoe {
    height: 100px;
    font-size: 2rem;
    background-color: #8E9DCC;
    color: #FBEAEB;
    border: 2px solid #2F3C7E;
}

    .btn-tictactoe:hover:not(:disabled) {
        background-color: #6A7CB2;
        color: #FBEAEB;
    }

    .btn-tictactoe:disabled {
        opacity: 1;
        cursor: not-allowed;
    }
