:root {
    --white: rgb(255, 255, 255);
    --icy-white: rgb(238, 250, 250);
    --black: rgb(0, 0, 0);
    --main-blue: rgb(0, 47, 239);
    --light-blue: rgb(225, 232, 255);
    --main-orange: rgb(222,113,25);
    --light-orange-transparent: rgba(168, 140, 118, 0.5);
    --light-yellow: rgb(246,244,230);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--icy-white);
}

p, li {
    color:var(--black);
}

h1, h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--main-blue);
}

#profileImage {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    pointer-events: none;
}

.country-flag {
    width: 20px;
    height: 14px;
    margin-top: -3px;
    pointer-events: none;
}

.icons {
    color:var(--main-blue);
}

.icons-white {
    color:var(--white);
}

.links {
    color: var(--black);
    text-decoration: underline;
}

.links:hover {
    color: var(--main-blue);
    transition: 0.4s;
}

.catch-phrase {
    color: var(--black);
}

.btn-outline-primary {
    color: var(--main-blue);
    background-color: transparent;
    background-image: none;
    border-color: var(--main-blue);
}

.btn-outline-primary:hover {
    color: var(--white);
    background-color: var(--main-blue);
    border-color: var(--main-blue);
}

.no-select {
    -webkit-touch-callout: none; 
      -webkit-user-select: none; 
       -khtml-user-select: none; 
         -moz-user-select: none; 
          -ms-user-select: none; 
              user-select: none; 
  }

::selection {
    background-color: var(--light-blue);
}

@media screen and (max-width:700px) {
    .main-section {
        width: 100%!important;
    }
    #profileImage {
        width: 85px;
        height: 85px;
}