@import url('https://fonts.googleapis.com/css2?family=Cambay:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ICONS */
.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  background-color: currentColor; /* Matches the text color of the parent element */
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
.icon-email-outline {
  -webkit-mask-image: url('/icons/email-outline.svg');
  mask-image: url('/icons/email-outline.svg');
}
.icon-github {
  -webkit-mask-image: url('/icons/github.svg');
  mask-image: url('/icons/github.svg');
}
.icon-linkedin {
  -webkit-mask-image: url('/icons/linkedin.svg');
  mask-image: url('/icons/linkedin.svg');
}
/* END ICONS */

html {
    background-color: #282D3B;
    color: #DADEDF
}

body {
    margin: 0px;
    height: 100%;
}

header {
    height: 80px;
    line-height: 80px;
    font-size: 36px;
    font-family: "Cambay", sans-serif;
    text-align: center;
    padding: 5px;
    background-color: rgba(245,245,245,0.05);
    color: #DADEDF;
}
header > img {
    vertical-align: bottom;
    width: 48px;
    margin: 10px 0px 22px 0px;
}
.social-links {
    position: fixed;
    right: 0px;
    padding-right: 15px;
}
.social-links > a {
    color: #085899;
    text-decoration: none;
    width: 32px;
    height: 32px;
}
.social-links > a:hover {
    cursor: pointer;
    color: #1180DD;
}
@media (max-width: 800px) {
    header {
        margin-bottom: 30px;
    }
    .social-links {
        position: relative;
        display: block;
        padding: 0px;
    }
}
@media (max-width: 500px) {
    header {
        font-size: 30px;
    }
    header > img {
        width: 40px;
        margin: 0px 0px 20px 0px;
    }
}

/* The size should be the total height minus the total header and footer (height, margin, padding, border) */
main {
    min-height: calc(100vh - 145px);
}

footer {
    text-align: center;
    bottom: 0px;
    height: 20px;
    width: 100%;
    line-height: 20px;
    font-size: 13px;
    padding-top: 15px;
    color: #DBDBE0;
}

.content-primary {
    max-width: 1100px;
    margin: auto;
    padding: 15px;
    border-left: 3px solid #CB8B1D;
    text-align: center;
}

.content-primary > p {
    font-size: 17px;
    text-align: justify;
    font-family: "Cambay", "sans-serif";
}

.tech-badges > div {
    font-family: sans-serif;
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    height: 17px;
    line-height: 17px;
    width: 100px;
    text-align: center;
    padding: 3px;
    margin: 7px;
    border-radius: 6px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.5);
}

.back-end-badge {
    background-color: #1E8CFA;
}

.front-end-badge {
    background-color: #4549A3;
}

.tool-badge {
    background-color: #3C8232;
}