@import url("https://fonts.googleapis.com/css?family=Ubuntu");
button,hr,input{overflow:visible}  progress,sub,sup{vertical-align:baseline}  [type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}  html{line-height:1.15;-webkit-text-size-adjust:100%}  body{margin:0}  details,main{display:block}  h1{font-size:2em;margin:.67em 0}  hr{box-sizing:content-box;height:0}  code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}  a{background-color:transparent}  abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}  b,strong{font-weight:bolder}  small{font-size:80%}  sub,sup{font-size:75%;line-height:0;position:relative}  sub{bottom:-.25em}  sup{top:-.5em}  img{border-style:none}  button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}  button,select{text-transform:none}  [type=button],[type=reset],[type=submit],button{-webkit-appearance:button}  [type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}  [type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}  fieldset{padding:.35em .75em .625em}  legend{color:inherit;display:table;max-width:100%;white-space:normal}  textarea{overflow:auto}  [type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}  [type=search]{-webkit-appearance:textfield;outline-offset:-2px}  [type=search]::-webkit-search-decoration{-webkit-appearance:none}  ::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}  summary{display:list-item}  [hidden],template{display:none}

:root {
    --default-color: #2b3541;
    --dark: #23272A;
    --mrrobot: #896474;

}
::selection {
    background-color: #324757;
    color: #fff;
}
body {
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    margin: 0;
    color: #f4f4f4;
    background-color: black;
}
h1 {
    font-size: -webkit-xxx-large;
    font-weight: lighter;
}
p {
    line-height: 1.5rem;
    font-size: 21px;
    letter-spacing: .4px;
}
a,
a:hover,
a:focus {
    color: var(--default-color);
    text-decoration: none;
}
hr {
    max-width: 80%;
    border-top: 1px solid rgba(0,0,0,.1); 
}
@keyframes fadein {from {opacity : 0;}to {opacity : 1;}}
@-moz-keyframes fadein {from {opacity : 0;}to {opacity : 1;}}
@-webkit-keyframes fadein {from {opacity : 0;}to {opacity : 1;}}
@-o-keyframes fadein {from {opacity : 0;} to {opacity : 1;}}
.background-img {
    box-shadow: inset 0 0 10rem 10px rgba(0, 0, 0, .58);
    filter: brightness(70%) blur(3px);
    background-image: url('../img/bg.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    animation: fadein 3s;
    -moz-animation: fadein 3s;
    -webkit-animation: fadein 3s;
    -o-animation: fadein 3s;
}
.contain {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    position: absolute;
    width: 100%;
}
.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background-color: white;
    color: #202020;
    padding: 4rem 10%;
    margin: 15%;
    border-radius: 0.15rem;
    box-shadow: 0px 0.1rem 0.15rem 0px rgba(0, 0, 0, 0.4);
    animation: fadein 1s;
    -moz-animation: fadein 1s;
    -webkit-animation: fadein 1s;
    -o-animation: fadein 1s;
}
.social_box {
    padding-top: 1rem;
}
@media (max-width: 1200px){
    .box {
        margin: 15px 5%;
    }
}
.fa {
   padding: 10px !important;
}
.default-color {
    color: var(--default-color);
}
.social_icon {
    border-radius: 15%;
    transition: .3s ease-out;
    font-size: 1.8rem;
    color:  var(--dark);
    display: inline-block;
    margin: 0 2px;
    padding: 8px;
}
.social_icon:hover, .social_icon:focus {
    border-radius: 15%;
    background-color: rgba(49,49,49,0.18824);
    padding: 8px;
}
