body{
    margin:0px;
    padding:0px;
    box-sizing: border-box;
    background-color:white;
    color:black;
    overflow-wrap: break-word;
}
cP{
    
}
header{
    background-color:black;
    height:50px;
}

.linkList{
    display:flex;
    list-style: none;
    gap:8px;
}

.linkList li{
    color:lightgray;
}

.linkList li:hover{
    color:white;
    cursor:pointer;
}

a{
    text-decoration: none;
}

@media only screen and (max-width:480px){
    .bigScreenOnly{
        visibility: hidden;
    }
}