*{
    margin: 0;
    padding: 0;
}

body{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1{
    height: 70px;
    margin-top: 10px;
}

.projects{
    padding: 13px 20px;
    margin: 10px 0px;
    background-color: rgb(48, 241, 231);
    display: flex;
    align-items: center;
    border-radius: 3%;

}

.project-links{
    color: black;
    text-decoration: none;
}

.mainBlock{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.blocks{
    height: 80px;
    width: 80px;
    margin: 0px 30px;
    border: 1px solid black;
    cursor: pointer;
}
#blue{
    background-color: blue;
}
#green{
    background-color: green;
}
#yellow{
    background-color: yellow;
}
#orange{
    background-color: orange;
}

h2{
    margin-top: 30px;
    font-size: 16px;
}

.firstBtnClass{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:40px;
    background-color: transparent;
}
.firstButton{
    padding: 10px;
    background-color: transparent;
}

.labels{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.smallLabel{
    margin-bottom: 20px;
}

input{
    height: 30px;
    width: 200px;
    border: 1px solid black;
    font-size: 20px;
    padding: 5px;
}

label{
    font-size: 20px;
}
.label01{
    padding-right: 20px;
}
.label02{
    padding-right: 20px;
}
.result01{
    padding-right: 71px;
}

.bmiButton{
    width: 100px;
    height: 40px;
    margin-left: 127px;
    font-size: 17px;
    cursor: pointer;
}

.guide{
    margin-top: 80px;
}

.bmiButton:hover{
    background-color: green;
    color: white;
}

@media (max-width:566px){
   .blocks{ 
    height: 40px;
    width: 40px;
    background-color: blue;
    margin: 0px 20px;
   }
}