@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    text-align: center;
    background-color: #080020;
    color: #fff;
    font-family: 'Montserrat';
    margin: 0;
    background-image: url("img/JR2023JumbotronGradient.jpg");
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
}

.header img {
    max-width: 250px;
    padding: 30px;
}

a {
    display: block;
    margin: 30px;
    padding: 30px;
    background-color: #351c6b;
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
}

a p {
    display: inline-block;
    margin: auto;
    font-size: 16px;
}

a i {
    margin-right: 20px;
}

@media only screen and (min-width: 320px) and (max-width: 1060px) {
    .header img {
        max-width: 150px;
        padding: 20px;
    }

    a {
        padding: 20px;
    }
}

/* STLYES FOR FOOTER */ 

footer {
    background-color: #180c31;
    padding: 40px;
}

#logo-footer {
    width: 200px;
    margin: auto;
}

.footer-nav {
    text-align: center;
}

.footer-nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-nav ul li a {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    margin: 5px 0;
    display: inline-block;
    background-color: rgba(0,0,0,0);
}

.footer-nav ul li a:hover {
    background-color: #fff;
    color: #000;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

#copyright {
    font-size: 18px;
    font-weight: 200;
    margin: auto;
    text-align: center;
}

@media only screen and (min-width: 320px) and (max-width: 1060px){
    .grid-3 {
        display: block;
        text-align: center;
        margin-bottom: 30px;
    }
}