* {
    font-family: 'Raleway', sans-serif;
    color: #FFFBF9;
    /* background-color: #141516; */
}

html {
    background: url(img/david-becker-779762-unsplash.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Navbar */

header {
    position: fixed;
    top: 0;
}

.navbar {
    top: 0;
    font-size: 20px;
}

.navbar ul {
    list-style: none;
    background-color: #141516;
    margin: 0;
    padding: 10px;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

li a {
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    color: #FFF4EF;
    background-color: #141516;
}

li a:hover {
    color: #56756D;
    font-weight: bold;
    border: #56756D;
}

/* Main titles */

.main-h1 {
    margin-top: 100px;
    margin-bottom: 50px;
}

/* welcome section */

.welcome-section {
    color: #f2f2ff;
    font-size: 2vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-content: center;
    padding-top: 20%;
    padding-right: 25px;
    padding-left: 25px;
}

.welcome-section p {
    color: #141516;
    background-color: #E4FFCA;
    width: 350px;
    height: auto;
    border-radius: 10px 10px 0 10px;
    margin: 10px 3vw auto auto;
    padding: 15px;
    text-align: left;
}

.welcome-section i {
    color: #141516;
    background-color: #E4FFCA;
}

/* Projects Section */

.projects {
    padding-top: 5%;
}

.grid {
    margin-top: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 5px;
    justify-items: center;
    align-items: center;
    justify-content: space-evenly;
}

a img:hover {
    transform: scale(1.05);
    transition: 0.5s;
}

.project-sample {
    width: 80vw;
    height: auto;
    border-radius: 6px;
}

h2 {
    margin-top: 50px;
}

/* Tags style */

.html-tag {
    color: #F7F7F7;
    background-color: #DC4D25;
    padding: 5px;
    border-radius: 4px;
}

.css-tag {
    color: #F7F7F7;
    background-color: #0079C0;
    padding: 5px;
    border-radius: 4px;
}

.bootstrap-tag {
    color: #F7F7F7;
    background-color: #563D7C;
    padding: 5px;
    border-radius: 4px;
}

.js-tag {
    color: #F7F7F7;
    background-color: #F19832;
    padding: 5px;
    border-radius: 4px;
}

/* Contact Section */

.contact {
    margin-top: 30px;
    padding-top: 20%;
    text-align: center;
}

.profile-link i {
    font-size: 3vw;
    color: #FFFBF9;
    padding: 20px;
    align-self: center;
}

.profile-link i:hover {
    color: #033636;
    transform: scale(1.1);
    transition: 0.5s;
}

/* Responsiveness */

@media (max-width: 800px) {
    .navbar {
        font-size: 16px;
    }
    .welcome-section {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 5px;
        justify-items: right;
        padding: 10%;
        width: 100vw;
        margin-right: 30px;
        margin-left: 30px;
    }
    .welcome-section p {
        width: 80vw;
    }

    .grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 5px;
        justify-items: center;
        align-items: center;
        justify-content: space-evenly;
        padding: 20px;
    }

    p {
        font-size: 15px;
    }

    .main-h1 {
        margin-top: 20px;
        padding: 20px;
        font-size: 30px;
    }

    .profile-link i {
        font-size: 8vw;
    }
}
