* {
    margin: 0;
    padding: 0;
}

body {
    height: 80vh;
    background-image: url("https://storage.needpix.com/rsynced_images/green-field-and-blue-sky-1446458468c5i.jpg");
    background-position: center;
    background-size: cover;
}

.upper-part {
    text-align: center;
    height: 50px;
}

@keyframes spin-sun {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.sun-img {
    animation: spin-sun 2s linear infinite;
}

.main {
    display: flex;
    flex-direction: row;
    text-align: center;
    position: fixed;
}

.bird {
    margin: 25px 180px;
}

.stand {
    width: 10px;
    height: 68vh;
    margin-left: 100px;
    background-color: rgb(83, 44, 10);
    border-radius: 7px;
}

.flag {
    align-items: center;
    /* margin-top: 130px; */
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    animation: wave 0.8s infinite;
}

@keyframes wave {
    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(1.5deg);
    }
}

.orange-part {
    background-color: #FF9933;
    width: 240px;
    height: 45px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border: 2px solid #f88e25;
}

.white-part {
    background-color: rgb(255, 255, 255);
    width: 240px;
    height: 45px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border: 2px solid rgb(216, 212, 212);
}

.green-part {
    background-color: #138808;
    width: 240px;
    height: 45px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border: 2px solid #12670a;
}

.box {
    width: 200px;
    height: 140px;
    margin-left: 150px;
    font-size: 40px;
    background-color: #FF9933;
    transform: .2s;
}

.box:hover {
    transform: scale(1.2);
    border-radius: 20px;
}

.audio {
    position: fixed; 
    bottom: 10px; 
    left: 85%; 
    transform: translateX(-50%); 
    opacity: 0.7; 
    z-index: 1000;
}

