body{
    margin: 0;
    position: relative;
}
.header{
    position: fixed;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: lightpink;
    align-items: center;
    width: 100%;
    border-bottom: 2px groove rgb(248, 90, 114);
}
.header-name{
    font-family: Italianno;
    font-size: 40px;
    padding: 5px;
    font-weight: bold;
    width: 100%;
}
.header-btn-container{
    display: flex;
    justify-content: end;
    width: 100%;
}
.header-btn-container button{
    font-size: large;
    border: 2px dashed black;
    padding: 5px 10px;
    background-color: lightblue;
    color: black;
    border-radius: 8px;
    transition: border-style 0.2s box-shadow 1s;
}
.header-btn-container button:active{
    border-style: solid;
    box-shadow: 0px 0px 2px black;
}