@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&family=Merriweather:wght@300;900&family=Rubik+Dirt&display=swap');

body {
    margin: 0;
    overflow: scroll;
    background-color: ivory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px 20px;
    flex-direction: column;
}

.logo {
    height: 60px;
    order: 2; 
    margin-top: 10px; 
}

.language-flag {
    width: 40px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s;
    order: 1; 
    margin-bottom: 10px; 
    border: 1px solid lightgray;
}

.language-flag:hover {
    transform: scale(1.1);
}

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

.video-container {
    width: 100%;
    height: auto;
    position: relative;
}

.info-container {
    text-align: center;
    font-family: 'Merriweather', serif;
    margin: 20px;
}

.info-container h1 {
    font-family: 'Amatic SC', cursive;
    font-size: 48px;
    color: #228b22;
}

.info-container p {
    font-size: 18px;
    color: #333;
}

.info-container a {
    color: #228b22;
    text-decoration: none;
}

.info-container a:hover {
    text-decoration: underline;
}

.facebook-logo {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.instagram-logo {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
} 

.facebook-logo {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

@media screen and (min-width: 600px) {
    .header {
        flex-direction: row; 
        padding: 10px 20px; 
    }
    
    .logo {
        order: 0; 
        margin-top: 0;
    }

    .language-flag {
        order: 0; 
        margin-bottom: 0;
        position: absolute;
        right: 20px;
    }
}
