/* Style Settings */

@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');
:root {
   --font: 'Karla', 'Karla', sans-serif;
}

body {
   background-color: rgb(243, 242, 242);
}

#userPhoto {
   width: 100px;
   height: 100px;
   display: block;
   margin: 20px auto 20px;
}

#userName {
   color: rgb(0, 0, 0);
   font-size: 1.3rem;
   font-weight: 600;
   line-height: 1.25;
   display: block;
   font-family: var(--font);
   width: 100%;
   text-align: center;
   text-decoration: none;
}

#links {
   max-width: 675px;
   width: auto;
   display: block;
   margin: 27px auto;
}

.link {
   display: block;
   background-color: #0c2340;
   color: #fff;
   font-family: var(--font);
   text-align: center;
   margin-bottom: 10px;
   padding: 17px;
   text-decoration: none;
   font-size: 1rem;
   font-weight: bold;
   transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
   border: 2px solid #082341;
}

.link:hover {
   background-color: #fff;
   color: #0c2340;
   /* border: solid #0C2340 2px; */
}

.footer {
   text-align: center;
   font-size: 1.3rem;
   margin: 20px;
}

.footer a {
   text-decoration: none;
}

.circulo {
   background: rgb(221, 221, 221);
   border-radius: 52px;
   width: 38px;
   height: 38px;
   text-align: center;
   font-size: 10px;
   color: rgb(32, 32, 32);
}

.circulo:hover {
   background: #0c2340;
   color: rgb(255, 255, 255);
   -webkit-box-shadow: 2px 2px 2px rgba(50, 50, 50, 0.77);
   -moz-box-shadow: 2px 2px 2px rgba(50, 50, 50, 0.77);
   box-shadow: 2px 2px 2px rgba(50, 50, 50, 0.77);
}

.night_mode {
   position: fixed;
   top: 25px;
   right: 30px;
   z-index: 10000000;
   color: #585858;
}

.night_mode:hover {
   cursor: pointer;
}

.row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   column-gap: 10px;
   row-gap: 0px;
}

.row a {
   margin-bottom: 10px;
}

@media (max-width: 767px) {
   .row {
      grid-template-columns: 1fr;
   }
}
