html {
    background-color: black;
    color: white;

    font-family: 'Roboto', sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;

    overflow: hidden;
}

body::before {
    content: "";
    position: absolute;

    width: 100%;
    height: 100%;
    z-index: -1;

    background-image: url("../images/monogram.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;

    animation: pulse 5s linear infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    72% {
        transform: scale(1);
    }

    74% {
        transform: scale(1.2);
    }

    77% {
        transform: scale(1.1);
    }

    79% {
        transform: scale(1.2);
    }

    82% {
        transform: scale(1);
    }
}

/*
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.4);
    }

    50% {
        transform: scale(1.2);
    }

    70% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}*/

a {
    color: white;
    text-decoration: none;
}

.contact {
    position: absolute;
    top: 0;
    right: 0;

    padding: 20px;

    .contact-item {
        line-height: 20px;
        vertical-align: top;
        margin: 0 5px;

        .icon {
            width: 20px;
            height: 20px;
            vertical-align: middle;
        }

        .text-icon {
            font-size: 20px;
            font-weight: bold;
            margin-left: 10px;
            vertical-align: top;
        }
    }
}

.projects {
    position: absolute;
    bottom: 0;

    margin: 0;
    padding: 20px;

    list-style-type: none;

    .project {
        vertical-align: middle;

        .project-icon {
            height: 40px;
            display: inline-block;
            vertical-align: middle;
        }
    }
}