/* FONTS */
/* Oswald Font Regular */
@font-face {
    font-family: Oswald;
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/Oswald/Oswald-Regular.ttf') format('truetype');
}

/* INDEX PAGE STYLING */
#index-html {
    height: 100%;
    width: 100%;
}

/* Body Styling */
#index-body{
    background-image:linear-gradient(#5b7acd,#0f073d) ;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

/* Logo styling */
#home-ez-logo{
    filter: drop-shadow(0 0 0 black)
    drop-shadow(1px 0 0 black) /* Right */
    drop-shadow(-1px 0 0 black) /* Left */
    drop-shadow(0 1px 0 black) /* Top */
    drop-shadow(0 -1px 0 black) /* Bottom */;
    padding-top: 20px;
    width: 300px;
    display: block;
    margin: 0 auto;
}

/* Navigation Styling */
#home-header-1{
    display: flex;
    justify-content: center;
    color: white;
    font-family: Oswald, serif;
    text-shadow:
            1px 1px 0 black,
            -1px -1px 0 black,
            1px -1px 0 black,
            -1px 1px 0 black;
}

#home-header-2{
    display: flex;
    justify-content: center;
    color:white;
    font-family: Oswald, serif;
    text-shadow:
            1px 1px 0 black,
            -1px -1px 0 black,
            1px -1px 0 black,
            -1px 1px 0 black;
}

#home-nav-bar{
    width: 1000px;
    margin: auto;
}

#home-nav{
    display: flex;
    justify-content: center;
    color:black;
    padding-bottom: 20px;
    font-family: Oswald, serif;
}

#home-nav ul{
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

#home-nav ul li {
    background-color: lightgrey;
    margin-right: 20px;
    display: inline-block;
    border:3px solid gray;
    border-radius: 5px;
    transition: background-color 0.4s;
}

#home-nav ul li a {
    color: black;
    display: block;
    padding-right: 20px;
    padding-left: 20px;
    text-decoration: none;
}

#home-nav ul li:hover {
    background-color: white;
    transition: background-color 0.4s;
}

/* LOGIN AND SIGN UP BUTTONS STYLING */
.home-login-signup-container{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    border-bottom: solid 2px black;
    background-color: #bfcbea;
    text-shadow:
            1px 1px 0 black,
            -1px -1px 0 black,
            1px -1px 0 black,
            -1px 1px 0 black;

}

.home-login-signup{
    color:white;
    background-color: transparent;
    border-color: transparent;
    transition: color 0.4s;
    font-family: Oswald, serif;
    font-size: 20px;
    padding-right: 15px;
    cursor: pointer;
    text-shadow:
            1px 1px 0 black,
            -1px -1px 0 black,
            1px -1px 0 black,
            -1px 1px 0 black;

}

.home-login-signup:hover{
    color:lightgrey;
    transition: color 0.4s;
}

/* Home Dashboard */
#home-dashboard-container{
    display: flex;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
}

#home-dashboard{
    display: flex;
    justify-content: flex-start;
    background-color: rgba(150, 175, 239, 0.3);
    border: 2px solid black;
    border-radius: 6px;
    width: 1085px;
    height: 445px;
}

.dashboard-grid-container{
    display: grid;
    grid-template-columns: repeat(5, 200px);
    padding: 10px;
    gap: 15px
}

.home-card{
    border: solid 2px gray;
    border-radius: 6px;
    background-image:linear-gradient(lightgrey, darkgrey);
    transition: transform 0.3s ease;
    height: 200px;
    width: 200px
}
.home-card-layer{
    grid-template-columns: repeat(3, 180px);
    background-color: transparent;
    border-radius: 6px;
    width: 200px;
    height: 200px;
    transition: 0.3s ease;
    cursor: pointer;
}

.home-card-img-container{
    height: 100px;
    width: 180px;
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 8px;
}

.home-card-img-container img{
    height: 100%;
    width: 100%;
    border: solid 2px gray;
    border-radius: 6px;
    object-fit: cover;
}

.home-card-title{
    font-family: Oswald, serif;
    color: black;
    height:50px;
    width:180px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
}

.home-card-date{
    font-family: Oswald, serif;
    color: dimgrey;
    padding-left: 5px;
    padding-right: 5px;
}

.home-card:hover{
    transition: 0.3s ease;
    transform: scale(1.05);
}

.home-card-layer:hover{
    transition: 0.3s ease;
    background-color: rgba(255,255,255,0.5);
}

