
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,900;1,700&display=swap");


:root {
  --normal-font: 400;
  --bold-font: 600;
  --bolder-font: 900;
  --primary-color: #2e3445;
  --secondary-color: #bd112b;
  --line-height: 1.7rem;
  --transition: 0.2s ease-in;
}

/* Smooth scroll effect */
html {
  scroll-behavior: smooth;
}

/* Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1 {
  font-size: 30px;
}
 body {
  font-family: "Roboto", sans-serf;
  background: url('https://images.unsplash.com/photo-1504052434569-70ad5836ab65?q=80&w=1770&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat;
  background-position: 30% 0;
}

ul li {
  list-style-type: none;
}

section {
  width: 100%;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}
a:hover {
  color: var(--secondary-color);
}

/* ---- socials ---- */
#socials {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 25px;
  margin-top: 200px;
}

#pfp {
  position: absolute;
  width: 300px;
  top: -50px;
}

#socials_box {
  display: block;
  padding: 25px;
  padding-top: 45px;
  background-color: white;
  margin: auto;

  width: 350px;

  border-radius: 40px;
  border-color: #222734;
  border-style: solid;
  border-width: 10px;
}
.social_element {
  margin: 10px;
}
.social_img {
  height: 30px;
  width: auto;
  margin-right: 7px;
}

.social_link {
  font-size: 20px;
  font-weight: bold;
  vertical-align: 7px;
  display: inline-block;
}

.address {
  font-size: 20px;
  font-weight: normal !important;
  vertical-align: 7px;
  display: inline-block;
}

#website {
  font-size: 27px;
  margin: auto;
}


@media screen and (max-width: 600px) {
  .social_link {
    font-size: 18px;
  }

  #website {
    font-size: 22px;
  }

  #pfp {
    width: 250px;
    top: -30px;
  }

  #socials_box {
    padding: 17px;
    padding-top: 37px;
  }

  #socials {
    margin-top: 150px;
  }
}

@media screen and (min-width: 1200px) {
  body {
  -webkit-background-size: cover; 
  -moz-background-size: cover;   
  -o-background-size: cover;   
  background-size: cover;     
  }
}
