/** 
 * Google Fonts
 * Inter Tight: 100, 200, 300, 400, 700
 * Kode Mono: 400, 500, 600, 700
 */

.inter-tight-100w {
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}
 
.inter-tight-200w {
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200w;
    font-style: normal;
}
  
.inter-tight-300w {
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300w;
    font-style: normal;
}
  
.inter-tight-400w {
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400w;
    font-style: normal;
}
  
.inter-tight-700w {
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700w;
    font-style: normal;
}
  
.kode-mono-400w {
    font-family: "Kode Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400w;
    font-style: normal;
}
  
.kode-mono-500w {
      font-family: "Kode Mono", monospace;
      font-optical-sizing: auto;
      font-weight: 500w;
      font-style: normal;
}
  
.kode-mono-600w {
      font-family: "Kode Mono", monospace;
      font-optical-sizing: auto;
      font-weight: 600w;
      font-style: normal;
}
  
.kode-mono-700w {
      font-family: "Kode Mono", monospace;
      font-optical-sizing: auto;
      font-weight: 700w;
      font-style: normal;
}

/* Text Styles */

h1 {
    font-family: "Kode Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 2em;
}

h2 {
    font-family: "Kode Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.5em;
}
h3 {
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1.2em;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin-top: 0;
    margin-bottom: 0;
}
p {
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
}

a {
    font-family: "Kode Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
    color: #0058ff;
    text-decoration: none;
    transition: all 0.3s;
    box-sizing: border-box;
    height: fit-content;
}

a:hover {
    font-weight: 700;
}

.small-text {
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 0.8em;
}

body {
    background-color:#f1f6ff;
    margin:0px;
}

main {
    margin: 80px;
    padding: 0;
}

h2, h1 {
    color:#0058ff;
}

/* Buttons */

/* Default Button */

.button {
    font-family: "Kode Mono", monospace;
    background-color: #e1ecff;
    border-radius: 5px;
    border: 1px solid #0058ff;
    padding: 10px 20px;
    box-sizing: border-box;
    color: #0058ff;
    display: inline-block;
}

.button-primary-light {
    border-radius: 5px;
    border: 1px solid #E5EEFF;
    background: #A8C6FF;
    padding: 10px 20px;
    color: #0058FF;
}

.button-primary-light:hover {
    background: #E5EEFF;
    transform: scale(1.05);
}

/* Discord Login Button */

#discord-login-button {
    background-color: #5865F2;
    color: white;
    padding: 10px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: fit-content;
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-size: 1em;
}

#discord-login-button img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    translate: 0px -2px;
    margin-right: 10px;
}

/* Logout Button */

#logout-button {
    background-color: #ff0000;
    color: white;
    padding: 10px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: fit-content;
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-size: 1em;
}


/* Profile picture */

#profilePicture {
    width: 1em;
    height: auto;
    border-radius: 50%;
    margin: 0 10px 0 0;
    display: inline-block;
    vertical-align: middle;
}

#user-content h2 {
    display: inline-block;
}

#username-wrapper {
    display: inline-block;
    background-color: #e2e2e2;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 1em;
    padding: 5px 10px;
}

/** Small icon adjustements **/

i {
    vertical-align: middle;
}