*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }

 :root{
    --text-color: rgb(219, 216, 216);
    --bg-url: url(assets/bg-mobile.jpg);
    --stroke-color: rgba(255, 255, 255, 0.5);
    --surface-color: rgba(255, 255, 255, 0.1);
    --surface-color-hover: rgba(107, 97, 97, 0.521);
    --highlight-color: rgb(255, 255, 255);
    --swhitc-bg-url: url(assets/moon-stars.svg);
}


 .light{
    --text-color: rgb(0, 0, 0);
    --bg-url: url(assets/bg-mobile-light.jpg);
    --stroke-color: rgb(0, 0, 0);
    --surface-color: rgba(0, 0, 0, 0.034);
    --surface-color-hover: rgba(90, 88, 88, 0.123);
    --highlight-color: rgb(70, 63, 63);
    --swhitc-bg-url: url(assets/sun.svg);
}

 
 body{
   /*background: image repeat position/size*/
   background: var(--bg-url) no-repeat top center/cover;
   font-family: 'Inter', sans-serif;
   color: var(--text-color)
 }
 
 #container{
   width: 360px;
   margin: auto;
   margin: 56px auto 40px;
 }
 
 #profile{
   text-align: center;
   padding: 24px;
 }
 
 #profile img{
   width: 120px;
   border-radius: 50%;
 }
 
 
 #profile p{
   font-weight: 500px;
   line-height: 24px;
   margin-top: 8px;
 }

 #swhitc{
    position: relative;
    width: 64px;
    margin: 4px auto;
    padding: 10px;
 }

 #swhitc button{
    height: 34px;
    width: 34px;
    border: 0;
    border-radius: 50%;
    background: white var(--swhitc-bg-url) no-repeat center;

    position: absolute;
    top: 50%;
    left: 0;
    z-index: 0;
    transform: translateY(-50%);
 }

 .light #swhitc button{
    right: 0;
    left: initial;
 }

 #swhitc span{
    display: block;
    height: 18px;
    width: 54px;
    border: 1px solid var(--stroke-color);
    border-radius: 10px;
    background: var(--surface-color);
 }
 
 ul>a{
   display: block;
   list-style: none;
   border: 1px solid var(--text-color);
   padding: 15px;
   margin: 10px;
   border-radius: 6px;
   cursor: pointer;
   background: var(--surface-color);
   backdrop-filter: blur(4px);
   text-align: center;
   text-decoration: none;
 }
 
 a>li{
   color: var(--text-color);
 }
 
 ul>a:hover{
   background: var(--surface-color-hover);
   transition: 0.3s;
   border-color: var(--text-color);
 }
 
 #social-links{
   display: flex;
   justify-content: center;
   gap: 20px;
 }
 
 #social-links>a{
   color: var(--text-color);
   margin-top: 20px;
   font-size: x-large;
 }
 
 #social-links>a:hover{
   color: var(--highlight-color);
 }
 
 #rodape{
   display: flex;
   justify-content: center;
   padding: 7%;
   margin-top: 50px;
   font-size: small;
 }