@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --navy: #0D2C54;
    --orange: #FF6B35;
    --lightgrey: #F8F9FA;
    --teal: #00BFA5;
}
/* #banner {
    position: fixed; 
    top: 0;  
    left: 0;
    width: 100%;
    z-index: 9999; 
    background-color: var(--orange);
    padding: 1rem;
    text-align: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}
#banner.fade-out {
    opacity: 0;
} */
#content {
    margin-top: 60px;
}
#buttons {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 20px;
    row-gap: 20px;
}
#buttons a {
    margin: 0;
    padding: 40px;
    color: black;
    text-decoration: none;
    align-self: center;
    justify-self: center;
    border: 5px grey solid;
    width: 100%;
    height: auto;
    font-size: 1.5em;
    box-sizing: border-box;
}
#buttons a:hover {
    border: 5px grey solid;
}
hr {
    margin: 30px 0;
}
#widgets {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 125px 125px;
    column-gap: 20px;
    row-gap: 20px;
}
#workouts-week, #workouts-month, #prs {
    display: flex;
    flex-direction: column;
    border: 5px grey solid;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
#widgets p {
    justify-self: center;
    margin: auto 0;
}
#prs {
    text-align: left;
    justify-self: start;
    padding: 10px 0;
    padding-left: 10%;
}
div p {
    padding: 10px;
    font-size: 1.3em;
}
.info {
    color: var(--orange);
    font-weight: 500;
}
#workouts-week .info, #workouts-month .info {
    font-size: 2.5em;
}
#progress:hover, #log:hover, #history:hover {
    background-color: #FF6B35;
    border: 3px grey solid;
}

@media screen and (min-width: 750px) {
    #buttons {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    #log {
        grid-column: 1/3;
    }
    #prs {
        flex-direction: row;
        justify-content: space-around;
        padding-left: 0;
    }
    #prs p {
        text-align: center;
    }
    #buttons a:hover {
        border: 3px grey solid;
    }   
}

@media screen and (min-width: 1200px) {
    #buttons {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr;
    }
    #buttons a:hover {
        border: 3px grey solid;
    }   
    #log {
        grid-column: 1/2;
    }
    #widgets {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 150px;
    }
    #prs {
        flex-direction: column;
        padding: 0 10%;
    }
    #prs p {
        text-align: left;
    }
    
}