@charset "UTF-8";
/* CSS Document */
:root {
  color-scheme: light dark;
}
body{
  text-align:center;
  margin:0 auto;
}
#header{
  height: 80px;
  width:100%;
  margin-bottom:10px;
}
#topimg{
  height:240px;
  width:100%;
  background: url("https://kydiamusic.com/assets/orangeprofile.jpg") center/contain no-repeat;
  margin-bottom:10px;
}
#maincontent{
	width:100%;
	margin:20px auto;
}
.longLinkBox {
  margin:5px auto;
  height: 20px;
  width: 240px;
  border: 2px solid;
  border-radius: 3%;
}
.longLinkBox a{	  
  display:block;
  text-decoration:none;
  width:100%;
  height:100%;
}
.longLinkBox a:hover{
  cursor: pointer;
}
@media (prefers-color-scheme: dark) {
  body {
    color: white;
    background-color: black;
  }
  .longLinkBox a{
    color:white;
  }
}
@media (prefers-color-scheme: light) {
  body{
    color: black;
    background-color: white;
  }
  .longLinkBox a{
    color:black;
  }
}
