#main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;

    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        .header {
            h1 {
                text-align: center;
            }

            img{
                height: 300px;
            }
        }

        .content{
            width: 100%;

            p {
                text-align: center;
            }

            .list-countries {
                display: flex;
                justify-content: center;
                padding-top: 60px;

                a {
                    margin: 10px;


                    &:hover {
                        transform: scale(1.2);
                        margin-right: 20px;
                        margin-left: 20px;                        
                    }

                    img {
                        width: 60px;
                        padding: 2px;
                        border: 1px solid #CECECE;
                    }
                    

                }
            }
        }
    }
}

