/* Global Styles */
*{
    box-sizing: border-box;
}

html, .paige-container {
    height: calc(100vh);
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
body {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: blueviolet;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: white;
}

#home-button{
    border-radius: 15px;
    background-color: white;
    color: #00bfb6;
    margin-top: 5px;
    border: 1pt solid white;
    border-color: #00bfb6;
}

#home-button:hover{
    background-color: #00bfb6;
    color: white;
    border-color: white;
}

/* Style for Top Row */
.top-row {
    display: flex;
    justify-content: center;
    min-height: 25vh;
}

/* Speech Bubbles */
.speech-bubble-container {
    width: 25rem;
    margin: 50px auto;
    background: #00bfb6;
    padding: 20px;
    text-align: center;
    font-weight: 900;
    color: #fff;
    font-family: arial;
    position:relative;
    border-radius: 50px;
  }
    /* The Triangle */
    .speech-bubble-container:before{
        content: "";
        width: 0px;
        height: 0px;
        position: absolute;
        border-left: 10px solid #00bfb6;
        border-right: 10px solid transparent;
        border-top: 10px solid #00bfb6;
        border-bottom: 10px solid transparent;
        left: 59px;
        bottom: -19px;
      }

      .bottom-row{
        display: flex;
        justify-content: space-between;
    }

    /* Style for Buttons */
    .btns-container {
        width: 30%;
        max-height: 200px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        left: -100px;
        /* border: 1pt solid white */
    } 

  @media screen and (max-width: 800px){
    .speech-bubble-container {
        width: 5rem;
        margin: 5px auto;
        background: #00bfb6;
        padding: 5px;
        text-align: center;
        font-weight: 400;
        color: #fff;
        font-family: arial;
        position:relative;
        border-radius: 30px;
      }
      .speech-bubble-container:before{
        left: 200px;
      }

      .bottom-row{
        justify-content: space-around;
      }
        /* Style for Buttons */
        .btns-container {
            width: 10%;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            left: -40px;
            /* border: 1pt solid white */
            max-height: 150px;
            justify-content: flex-end;
        } 

        .infoBtns{
            margin: 5px;
            border-radius: 15px;
            font-size: 0.75rem;
            
        }

        #search-input{
            width: 10rem;
        }

        #search-input::placeholder {
            font-size: 0.75rem;
        }
  }


  
/* Style for Flags */

.flag-container{
    /* border: 1pt solid white; */
    padding-right: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.flag{
    height: 80%;
    width: 90%;
    border-radius: 10px;
}


/* Positioning of Globe */
 /* #globey { 
    max-height: 200px;
    max-width: 400px;
} */



.infoBtns{
    margin: 5px;
    border-radius: 15px;
    color: #00bfb6;
    background-color: white;
    border-color: #00bfb6;
}

.infoBtns:hover{
    color: white;
    background-color: #00bfb6;
    border-color: white;
}

.features-container{
    /* border: 1pt solid white; */
    width: 30vw;
    height: 200px;
    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    /* border: 1pt solid red; */
}

#search-input {
    border-radius: 20px;
    
}
/* #randomFactBtn {
    width: 300px;
} */

.modal {
    color: rgb(15, 10, 10);
}


/* Style for Inputs */
/* #country-input {
    border-radius: 10px;
    width: 300px;
    margin-left: 5px;
} */


/* Hide class */

.hide {
    display: none;
}


/* .speech-bubble-container{
    position: absolute;
    top: 0px;
} */

.countries-visited-container {
    display: flex;
    margin-top: 1%;
    width: 10%;
    height: 20%;
}

.history-flag {
    margin: 5% 5%;
}