@font-face
{
    font-family: 'customFont';
    src: url('src/font/Poetsen_One/PoetsenOne-Regular.ttf');
}

*
{
    font-family: customFont;
}

:root
{
    --mdc-theme-primary: #800505;
    --mdc-theme-on-secondary: grey;
}

body
{
    margin: 0;
}

.allCountries
{
    transition: 0.25s ease-in-out;
}

.singleCountry, .singleRegion
{
    display: flex;
    flex-direction: row;
    border: solid black 2px;
    height: 100px;
    justify-content: space-between;
    align-items: center;
    margin: 15px;
    border-radius: 5px;
    transition: 0.5s;
    box-shadow: 5px 5px;
    position: relative;
}

.singleCountry:hover, .singleRegion:hover
{
    background-color: lightgrey;
    cursor: pointer;
}

.singleCountry img, .singleRegion img
{
    height: 100%;
}

.singleCountry img
{
    border-left: solid black 2px
}

.singleCountry p, .singleRegion p
{
    padding: 5px;
}

.mdc-top-app-bar, .mdc-drawer
{
    top: 0;
}

.mdc-drawer--modal .logoDiv
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo
{
    width: 90%;
    padding: 10px;
}

.response
{
    margin-top: 71px;
}

.guessTheFlag
{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.invisible
{
    display: none;
}

.bigCountryImage
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.bigCountryImage img, .flagToGuess
{
    width: 100%;
}

.bigCountryInfo
{
    width: calc(100% - 20px);
    padding: 10px;
}

.bigCountryInfo h4, .bigCountryInfo p, .scoreDiv h2, .bigCountryInfo h2
{
    margin: 5px 0;
    padding: 5px;
    background-color: rgba(252, 3, 7, 0.2);
    border-radius: 5px;
}

.guessDiv
{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
}

.scoreDiv
{
    padding: 10px;
}

.answer
{
    position: fixed;
    top: calc(0% + 56px);
    left: -150%;
    -webkit-text-stroke: 2px black;
    font-size: 32px;
    margin: 0;
    transition: 0.25s;
}

.countrySearch
{
    position: absolute;
    top: -1%;
    width: 100%;
    transition: 0.25s ease-in-out;
    position: fixed;
    z-index: 1;
}

.returnBtn
{
    position: absolute;
    left: 0;
}

.returnRegionBtn
{
    position: fixed;
    right: 0;
    z-index: 1;
}

.mdc-fab
{
    background-color: #800505;
}

.addFavorite
{
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    color: red;
}

.singleCurrency
{
    margin: 10px auto;
    width: 95%;
    background-color: lightgrey;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    border: solid grey 2px;
}

.singleCurrency p
{
    margin: 0;
    padding: 10px;
}

.currencyCountryList li p
{
    padding-top: 2px;
    padding-bottom: 2px;
}

.currencyCountryList
{
    padding: 0;
    list-style-type: none;
}

.top
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 500px) {
    .flagToGuess, .bigCountryImage img
    {
        width: 40%;
        border-left: 3px solid #800505;
        border-right: 3px solid #800505;
        align-self: center;
    }
}