html {
    height: 100vh;
}

body {
    height: 100vh;
    margin: 0px;
    background-color:black;
}

#Header {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 20px;
}

h4{
    color:white;
}

#mainBlock{
    background-color: white;
}

#orangeBlock {
    display: flex;
    align-items: center;
    background-color: rgb(255, 194, 0);
    flex-direction: row;
    padding: 20px;
    padding-left: 50px;
    padding-right: 50px;
}

blockquote{
    font-size: 22px;
    font: bold;
}

#welcomeImg {
    width: 100vw;
    max-width: 951px;
}

#xamkBurger {
    display: none;
}

h1 {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.ajankohtaistaBox {
    background-color: black;
    padding: 10px;
    padding-left: 15vw;
    padding-right: 15vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.orangeText {
    color: orange;
    font-size: 20px;
}

.ajankohtaista {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.centerer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#imgCenterer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color:black;
}


@media only screen and (max-width: 750px) and (min-width: 400px) {
    .ajankohtaista {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    h4{
        display:none;
    }

    #xamkBurger {
        display: flex;
        width: 25px;
        height: 25px;
        position: absolute;
        right: 25px;
    }

    #orangeBlock {
        display: flex;
        align-items: center;
        background-color: rgb(255, 194, 0);
        flex-direction: column;
        padding: 20px;
    }
}