*{
    box-sizing: border-box;
    margin: 0;
}

body{
    background-color: #07393C;
    color: #90DDF0;
    font-family: Arial, Helvetica, sans-serif;
}

h1{
    color: #90DDF0;
}

.container{
    display: flex;
    flex-direction: column;
    width: 100dvw;
    height: 100dvh;
    justify-content: space-between;
}

.header{
    display: flex;
    background-color: #2C666E;
    height: 100px;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
}

.nav{
    display: flex;
    width: 200px;
    height: 50px;
    background-color: #90DDF0;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 30px;
}

a{
    text-decoration: none;
    color: #2C666E;
}

.footer{
    display: flex;
    background-color: #2C666E;
    height: 80px;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    color: #90DDF0;
}

.main{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex: 1 1 0;
    gap: 50px;
    margin: 10px;
    flex-wrap: wrap;
}

.menu{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.brojalica{
    display: flex;
    background-color: #2C666E;
    height: 180px;
    width: 180px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    padding: 75px;
}

#broj{
    font-size: 50px;
}

.option{
    display: flex;
    height: 150px;
    width: 200px;
    flex-basis: 200px;
    flex-direction: column;
    margin: 20px;
    gap: 20px;
}

button{
    font-size: x-large;
    background-color: #90DDF0;
    color: #07393C;
    height: 50px;
    outline: 5px #2C666E solid;
    font-weight: bold;
}

.article{
    display:flex;
    height: 300px;
    max-width: 500px;
    background-color: #07393C;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: 20px;
    padding: 20px;
    border-radius: 30px;
    flex-basis: 500px;
    flex-grow: 1;
}
h2{
    background-color: #90DDF0;
    color: #2C666E;
    padding: 10px;
    border-radius: 30px;
}