*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.navbar{
    width: 100%;
    padding: 0 10%;
    margin: auto;
    height: 50px;
    display: flex;
    justify-content: space-between;
    background-color: black;
    color: white;
}

.title{
    margin: 10px 0;
}

.nav-items{
    float: right;
    list-style-type: none;
    display: flex;
}

.nav-item{
    margin: 10px 20px;
    cursor: pointer;
}

.container{
    display: flex;
    position: absolute;
    flex-direction: column;
    align-items: center;
    top: 40%;
    left: 40%;
}

p{
    font-size: 20px;
}

img{
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

