/* <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900*/

.montserrat-regular {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html {
  scroll-behavior: smooth
  ;
}

body {
    background: url("../img/blob.svg") no-repeat center center fixed;
    background-attachment: fixed;
    background-position: 0% 0%;
    color: black;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


a {
    color: black;
    text-decoration: none;
}

.contact-links {
    display: flex;
    justify-content: right;
    margin-top: 2%;
    margin-left: 2%;
    margin-right: 2%;
}

.contact-links a {
    margin: 0 1%;
    font-size: 3vh;
    transition: all ease 0.5s;
}

.contact-links a:hover {
    transform: scale(1.2);
}

#wip {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top: 10%;
    font-size: 5vh;
}

#wip h1, #wip h3 {
    background: url("../img/layered.svg") 0 0 / cover no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer {
    color: black;
    text-align: center;
    padding: 2%;
    position: fixed;
    bottom: 0;
    width: 100%;
    backdrop-filter: blur(20px);
}

footer span {
  user-select: none;
  -webkit-user-select: none;
  cursor:default;
}

@media screen and (max-width: 600px) {
    .contact-links {
        display: flex;
        justify-content: right;
        margin-top: 2%;
        margin-left: 2%;
        margin-right: 2%;
    }

    body {
        background: url("../img/blob_phone.svg") no-repeat center center fixed;
        color: black;
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    div #wip {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-top: 10%;
        font-size: 5vh;
    }

    #wip h1 {
        font-size: 2em;
    }

    #wip h3 {
        font-size: 1.5em;
    }

    footer {
        color: black;
        text-align: center;
        font-size: 1.5em;
        padding: 4%;
        position: fixed;
        backdrop-filter: blur(20px);
    }
}