/*------------------Reset---------------------*/

/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  box-sizing: border-box;
}
/*
  2. Remove default margin
*/
* {
  margin: 0;
}
/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
/*
  5. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
/*
  6. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}
/*
  7. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
/*
  8. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}


/* ------------------CSS------------------ */


body {
    background: #353535;
    color: #353535;
    font-family: "Inter", sans-serif;
}

.flex {
    display: flex;
    flex-direction: column;   
}

.small__text {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.25em;
}

.app__container {
    margin: auto;
    background: #f2f2f2;
    max-width: 300px;
    min-height: 80vh;
    border-radius: 10px;
    justify-content: space-between;
    margin-top: 4em;
    margin-bottom: 4em;
    box-shadow: rgba(213, 217, 217, .5) 2px 3px 15px 0;
}

.conatiner__size {
    width: 75%;
    margin: auto;    
}

.margin {
    margin: 0.5em 0 0 0;
}

.button__container {
    display: flex;
    justify-content: center;
    gap: 10%;
    margin: 0.5em 0 0 0;
}

.info__container {
    align-items: center;
}

.info__title {
    font-size: 1.5em;
}

.info__subtitle {
    margin-top: 0.2em;
    font-size: 1em;
}

.info__website {
    color: #cb5c0d;
}
.info__button {
    border-radius: 8px;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    font-size: 13px;
    line-height: 29px;
    padding: 0 10px 0 11px;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    width: 9em;
    box-shadow: 1px 2px 5px #353535;
    margin: 0.5em 0 0 0;
}
.info__button_linkdin {
    background-color: #336699;
    color: #f7fafa;
}

.info__button_linkdin:hover {
  background-color: #2f4858;
}

.info__button_linkdin:focus {
  border:  1px #008296;
  box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
  outline: 0;
}

.info__button_git {
    background-color: #fff;
    border: 1px solid #d5d9d9;
    color: #0f1111;
    
}

.info__button_git:hover {
  background-color: #f7fafa;
}

.info__button_git:focus {
  border-color: #008296;
  box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
  outline: 0;
}

.info__img {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
}

.about__container {
    margin-top: 2em;
}

.interest__container {
    margin-top: 2em;
}

.footer__container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #bfbfbf;
    width: 100%;
    height: 3em;
    border-radius: 0 0 10px 10px;
    margin: 2em 0 0 0;
    padding: 0.75em;
}