
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}


/* Properties used throughout this document*/
nav, .dropdown-btn {
    background-color: rgb(16, 14, 29);
}
a:link {
    color: azure;
}
a:visited {
    color: rgb(242, 174, 174);
}
a:hover {
    color: rgb(206, 249, 32);
}

/*----------------
Nav Bar properties
------------------*/
.dropdown-btn {
    border: none;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(15, 6, 63);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: rgb(249, 241, 241);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
 }
.dropdown-menu {
    position: relative;
    display: inline-block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #c006c7;}

/* Show the dropdown menu on hover */
.dropdown-menu:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown-menu:hover .dropbtn {background-color: #3e558e;}

.dropdown-btn, .header-button {
    display: inline-block;
    color: rgb(255, 255, 255);
    padding: 12px 16px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

/*----------------
Body properties
----------------*/
body {
    background-color: rgb(24, 5, 110);
    color: azure;
}
a:link {
    color: rgb(196, 130, 228);
}
a:visited {
    color: rgb(242, 174, 174);
}
a:hover {
    color: rgb(206, 249, 32);
}
p {
    padding: 8px;
}
.upcominggigs, .dateblock {
    margin-left: 5px;
    padding: 10px 5px;
}
.overview {
    margin-left: 10px;
    padding: 15px;
    padding-bottom: 10px;
}
.upcominggigs {
    font-size: 14px;
}
.dateblock {
    background-image: linear-gradient( to right, rgba(184, 193, 202, 0), rgb(51, 32, 158));
}
.eventimage {
    max-width: 99%;
    padding: 5px;
}
.eventimageiframe {
    max-width: 99%;
    border: 0;
}

/*-------------
Properties for the event grids
--------------*/
.event-grid-container {
    margin: 8px;
    display: grid;
    gap: 4px;
    padding: 4px;
    border: 2px groove rgba(95, 50, 168, 0.8);
    background-color: rgb(55, 0, 110);
    grid-template-areas:
    'details details image'
    'tickets tickets image'
    'description description description';
}
.grid-item {
    text-align: left;
    font-size: 16px;
}       
.gridtickets {
    grid-area: tickets;
}
.gridartist_venue {
    grid-area: details;
}      
.gridimage {
    text-align: center;
    grid-area: image;
} 
.griddescription {
    grid-area: description;
}
.blankspace {
    grid-area: blank;
}

/* desktop settings */
@media only screen and (min-width: 600px) {
    /*----------------
    Body properties
    ----------------*/
    body {
        background: #dddfe0;
        color: #0e0c38;
        display: block;
        align-items: center;
        padding: 0 10px;
        justify-content: center;
        min-height: 100vh;
    }
    a:link {
        color: rgb(130, 27, 181);
    }
    a:visited {
        color: rgb(95, 26, 26);
    }
    a:hover {
        color: rgb(16, 165, 0);
    }
    .eventimage {
        max-width: 40%;
        width: 600px;
        border-radius: 1px solid #ddd;
    }
    .eventimageiframe {
        width: 600px;
        max-width: 50%;
        border: 0;
    }
    .upcominggigs, .dateblock, .newevents {
        color: #0e0e0e;
        margin-left: 5px;
        padding: 10px 5px;
    }
    .upcominggigs {
        font-size: 16px;
    }
    .newevents {
        font-size: 14px;
    }
    .dateblock {
        background-image: linear-gradient( to right, rgba(184, 193, 202, 0), rgba(62, 83, 104, 1));
    }

    /*-------------
    Properties for the nav bar
    --------------*/
    .dropdown-btn {
        color: white;
        padding: 16px;
        font-size: 16px;
        border: none;
    }
    nav, .dropdown-btn{
        background-color: rgb(17, 4, 89);
    }
    /* Dropdown Content (Hidden by Default) */
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: rgb(15, 6, 63);
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
    }
    /* Links inside the dropdown */
    .dropdown-content a {
        color: rgb(249, 241, 241);
        padding: 12px 16px;
        text-decoration: none;
        display: block;
     }
    .dropdown-menu {
        position: relative;
        display: inline-block;
    }
    /* Change color of dropdown links on hover */
    .dropdown-content a:hover {background-color: #c006c7;}

    /* Show the dropdown menu on hover */
    .dropdown-menu:hover .dropdown-content {display: block;}

    /* Change the background color of the dropdown button when the dropdown content is shown */
    .dropdown-menu:hover .dropbtn {background-color: #3e558e;}

    /*-------------
    Properties for the event grids
    --------------*/
    .event-grid-container {
        display: grid;
        padding: 20px;
        margin: 30px;
        border: 1px solid rgba(0, 0, 0, 0.8);
        background-color: rgb(161, 176, 179);
        grid-template-areas:
        'details image tickets'
        'details image tickets'
        'description description description';
    }
    .grid-item {
        padding: 1px;
        font-size: 16px;
    }       
}
