#imagecontainer {
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(../img/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

#kir {
    width: 50%;
}

#button-area {
    display: flex;
    justify-content: center;

}

.button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    margin: 5px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border: 4px solid white;
    border-radius: 100px;
}
.button:hover {
    cursor: pointer;
}

.arrow {
    height: 26px;
    transform: rotate(-90deg);
    margin-left: 5px;
}

#videobutton {
    background-color: white;
    color: black;
}

#projebutton {
    color: white;
}



.pro-box {
    background-color: #0c0c0c;
    border-radius: 20px;
    margin: 50px 0;
}
.pro-image {
    border-radius: 20px 20px 0 0;
    width: 100%;
    height: 500px;
    object-fit: cover;
    overflow: hidden;
}
.pro-loc, .pro-exp, .more-link {
    padding: 8px 20px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}
.pro-title {
    padding: 8px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
}
.more-link {
    text-align: center;
    font-weight: 450;
}
.more-link:hover {
    cursor: pointer;
}



#videoarea {
    width: 100%;
    margin: 8% 0;
    text-align: center;
}

iframe {
    width: 100%;
}



@media (min-width: 600px) and (max-width: 800px) {
    #kir {
        width: 60%;
    }
    #imagecontainer {
        height: 370px;
    }
}


@media (max-width: 600px) { 
    #kir {
        width: 80%;
    }

    .button {
        font-size: 14px;
    }

    #imagecontainer {
        height: 230px;
    }
    
    .arrow {
        height: 18px;
    }

    .pro-image {
        height: 250px;
    }
    
    .pro-loc, .more-link {
        font-size: 20px;
    }


    .pro-title {
        font-size: 24px;
    }


}