*{
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navBar{
    position: relative;
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 5;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
}

.contentContainer{
    display: flex;
    flex-direction: column;
    width: calc(100% - 40px);
    max-width: 500px;
    padding: 20px;
}   

.title{
    font-weight: bold;
    font-size: 30px;
}

.description{
    font-size: 16px;
    color: rgb(100,100,100);
    margin-top: 5px;
}

.cookieWarning{
    background-color: rgba(0,0,0,0.1);
    margin-top: 10px;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.cookieIcon{
    min-width: 30px;
    width: 30px;
    height: 30px;
}

.cookieText{
    color: rgb(50,50,50);
    margin-left: 10px;
}

.loginButton{
    background-color: #00266b;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-top: 20px;
    height: 50px;
    border-radius: 10px;
    cursor: pointer;
}

.koalaIcon{
    width: 30px;
    height: 30px;
    min-width: 30px;
}

.buttonText{
    font-size: 20px;
    font-weight: bold;
    margin-left: 10px;
}
