@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&display=swap');

:root {
    --primary-color: #168F87;
    --white-color: #fff;
    --fs-normal: 22px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.landing-page {
    background: url('images/background.jpg') no-repeat center;
    background-size: cover;
    font-family: 'Playfair Display', sans-serif;
    color: var(--white-color);
}

.landing-page:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(rgba(78, 37, 86, 0.9), rgba(0, 0, 0, 0.8));
    z-index: -100;
}

/* Default stylings */

h1 {
    font-size: clamp(40px, 3vw, 72px);
    font-weight: 500;
}

p {
    font-size: var(--fs-normal);
}

a {
    color: var(--white-color);
    font-size: var(--fs-normal);
    text-decoration: none;
    transition: 0.3s ease;
}

img {
    height: 100px;
}

/* Hovers */

a:hover {
    color: var(--primary-color)
}

a:hover .fas {
    transform: scale(1.15);
}

/* Content */

.landing-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.info,
.person {
    margin-top: 2rem;
}

.contact {
    margin-top: 3rem;
}

.contact a:not(:first-child) {
    margin-left: 3rem;
}

.contact .fas {
    margin-right: 1rem;
    color: var(--primary-color);
    transition: 0.3s ease;
}

/* Media queries */
@media (max-width: 768px) {
    a {
        display: block;
    }

    a:not(:first-child) {
        margin-top: 1rem;
    }

    a,
    p {
        font-size: 20px;
        text-align: center;
        margin-left: unset !important;
    }

}