@import url("https://fonts.googleapis.com/css?family=Raleway&display=swap");

:root{
    --color-white: white;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

* {
  font-family: inherit;
}

html {
  font-size: 62.5%; 
}

html,body{
    height: 100%;
  }

body {
  font-family: "Raleway", sans-serif;
  font-size: 2rem;
  color: var(--color-white);
  background: url("./IMG_2994.jpg") no-repeat;
    background-size: cover;
    background-position: center bottom;
}

h1.section-title{
    font-size: 8rem;
    margin-bottom: 5rem;
}

.link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: baseline;
    margin: 0 5rem;
}
.link-item:hover{
    text-decoration: none;
}
.link-item__text {
    margin-top: 1rem;
    color: var(--color-white);
}
.link-item__image {
   border-radius: 50%;
   height: 8rem;
   width: 8rem;
   background-color: var(--color-white);
   padding: 1.5rem;
   display: flex;
   align-items: center;
   justify-content: center;
}
.link-item__image img {
   max-height: 80%;
}
