@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Roboto, Arial, Helvetica, sans-serif;
}
body{
    width: 100%;
    min-height: 100%;
}
header{
    background-color: #e78c41;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}
header h1{
    color: white;
    padding: 20px;
}
ul{
    list-style: none;
    display: flex;
}
ul li{
    color: white;
    padding-left: 5vh;
}
.citrusy{
    display: flex;
    padding-top: 50px;
}
.citrusy .lavo{
    padding: 60px;
    width: 60%;
}
.citrusy .lavo h3{
    padding-top: 60px;
    font-weight: 300;
}
.citrusy .lavo h1{
    text-transform: uppercase;
    font-weight: 900;
}
.citrusy .pravo {
    width: 40%;
}
.citrusy .pravo img{
    width: 100%;
}
header h1 a{
    color:white;
    text-decoration: none;
}
@media only screen and (max-width: 900px) {
    .citrusy{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .citrusy .lavo {
        width: 100%;
    }
    ul li{
        color: white;
        padding-left: 2vh;
    }
}
