@import url('https://fonts.googleapis.com/css2?family=Carter+One&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css");

:root {
    --shadow-size: 6px;
}

body {
    background-color: #364156;
    font-family: 'Carter One', cursive;
    min-height: 100vh;
}

h1 {
    color: whitesmoke;
    text-shadow:
        -2px 2px 0px #D66853,
        -4px 4px 0px #7D4E57,
        -6px 6px 0px #11151C;
    animation-name: grow-shadow;
    animation-duration: 0.75s;
    animation-timing-function: ease-in;
}

h4 {
    color: whitesmoke;
    text-shadow: -2px 2px 0px #11151C;
}

i.bi {
    padding: 0px 4px 0px 4px;
}

div.row {
    margin-top: 10px;
    margin-bottom: 10px;
}

div.button-col {
    margin-bottom: 20px;
}

#output-row {
    color: #D66853;
    font-size: x-large;
    text-align: center;
    text-shadow: -2px 2px 0px #11151C;
    margin-top: -20px;
}

@keyframes grow-shadow {
    from {
        text-shadow:
            0px 0px 0px #D66853,
            0px 0px 0px #7D4E57,
            0px 0px 0px #11151C;
    }

    to {
        text-shadow:
            -2px 2px 0px #D66853,
            -4px 4px 0px #7D4E57,
            -6px 6px 0px #11151C;
    }
}

.btn-custom {
    min-width: 75%;
    --bs-btn-font-size: x-large;
}

.btn {
    --bs-btn-color: whitesmoke;
    --bs-btn-bg: #212D40;
    --bs-btn-border-color: whitesmoke;
    --bs-btn-hover-color: #212D40;
    --bs-btn-hover-bg: #D66853;
    --bs-btn-hover-border-color: #7D4E57;
    --bs-btn-focus-shadow-rgb: #11151C;
    --bs-btn-active-color: #7D4E57;
    --bs-btn-active-bg: #D66853;
    --bs-btn-active-border-color: #7D4E57;
}