/* Declare Variables */
:root{
    --primary-color: rgb(45, 174, 238);
    --secondary-color: #8860D0;
    --dark-color: #272727;
    --light-color: #fff;
    --grey-color: #f7f7f7;
    --secondary-blue: #5AB9EA;
}

/* Apply Resets */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apply Default Styles */

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.2;
    background-color: var(--light-color);
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
}

a:hover{
    color: var(--secondary-blue);
    transition: all 0.5s ease-in-out;
}

/* Utilities */

.container {
    max-width: 1100px;
    margin: auto;
}

.effect {
    color: var(--primary-color);
}

.btn {
    cursor: pointer;
    color: var(--light-color);
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    display: inline-block;
    border-radius: 1.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
}

.btn-primary:hover{
    background-color: var(--secondary-blue);
    transition: all 0.5s ease-in-out;
    color: var(--light-color);
}

/* Navigation Styles */

#navigation {
    background-color: var(--dark-color);
    padding: 0.5rem;
    display: flex;
    justify-content: space-around;
    position: sticky;
    top: 0;
    z-index: 1;
}

#navigation .logo {
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    color: var(--light-color);
}

/* Showcase Styles */

#showcase {
    background-color: var(--secondary-color);
}

#showcase .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 54px);
    text-align: center;
    color: var(--light-color);
}

#showcase .container h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

#showcase .container h2 {
    font-size: 3rem;
}

#showcase .container p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

@media (max-width: 500px){

    #showcase .container h2 {
        font-size: 2.2rem;
    }

    #showcase .container h3 {
        font-size: 1rem;
    }

    #showcase .container p {
        font-size: 0.8rem;
    }

    .btn{
        font-size: 0.8rem;
    }
}


