*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

form {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

input, button {
    background-color: #fff;
    border: none;
    font-size: 1.2rem;
    padding: 15px 20px;
}

input {
    font-weight: bold;
}

input:focus {
    outline: none;
}

body {
    background-color: #82A0AA;
    overflow: scroll;
}

header{
    margin-top: 2rem;
    font-size: 1.5rem;
    min-height: 11vh;
}

header h1{
    text-align: center;
}


img{
    width: 200px;
    height: 133px;
}

.country-container{
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    min-height: 40vh;
}

.country-card{
    background-color: #7792A7;
    min-width: 300px;
    height: fit-content;
    padding: 1rem;
    border-radius: 15px;
    -webkit-box-shadow: 5px 5px 15px 5px #000000; 
    box-shadow: 5px 5px 15px 5px #000000;

}
.card-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.card-body{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
}

.card-body p {
    text-transform: capitalize;
}

.borders-container {
    border-top: 10px solid #825F7F;
    padding-top: 2rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    background-color: #907159;
    min-height: 35.8vh;
    height: fit-content;
}

i{
    margin-right: 0.5rem;
}