body{
    margin:0;
    display: flex;
    min-height: 100vh;
}
main{
    flex:1;
}

header {
    margin-top: 0;
    display: flex;
    width: 100%;
    height: auto;
    position: absolute;
    justify-content: space-between;
}



.logo{
    display: flex;
    justify-content: flex-end;
    justify-self: right;
    align-self: flex-start;
    z-index: 999;
}
.logo img {
    display: flex;
    width: 100px;
    height: 100px;
    object-fit: contain;

}

.logout-button-div {
    vertical-align: bottom;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    align-self: center;
    height: 15%;
}

.logout-button {
    font-size: 20px;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.logout-button:hover {
    opacity: 0.8;
    background-color: #ddd;
    color: #333;
}

.icon-item {
    font-weight: 500;
    font-size: 24px;
    align-self: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;

}
.profile a img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    margin-top: 10px;
}
.profile a:hover img {
    opacity: 0.8;
}

.profile {
    display: flex;
    flex-direction: column;
    padding: 5px;
    border-radius: 50%;
    margin-top: 10px;
}
@media screen and (max-width:425px) {



}

