@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

html {
    font-family: sans-serif;
}

body {
    margin: 0px;
    font-size: 110%;
}

h1 {
    text-align: center;
    font-family: 'Pacifico', cursive;
    font-size: 250%;
}

.main-content {
    width: 90%;
    margin: 0px;
    margin-left: auto;
    margin-right: auto;
}

/*------------------------- Nav starts here -------------------------*/

nav {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #50a2b6;
}

.nav-list {
    display: flex;
    justify-content: space-around;
    width: 90%;
    margin: 0 auto;
}

nav .logo {
    color: white;
    font-family: 'Pacifico', cursive;
    font-size: 250%;
    text-decoration: none;
    display: block;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

nav ul li {
    display: inline-block;
    padding: 0 50px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

/*------------------------- Main starts here -------------------------*/


#main-resources {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2%;
}

#main-resources img {
    padding-top: 5%;
    display: block;
    width: 80%;
    margin: 0 auto;
}

#main-resources h2 {
    font-size: 110%;
    text-align: center;
}

#main-resources a {
    color: white;
    background-color: #50a2b6;
    text-align: center;
    text-decoration: none;
    border-radius: 10%;

    display: block;
    padding: 2%;
    width: 50%;
    margin: 0 auto;

}

/*------------------------- Details Page starts here -------------------------*/

#details-resources img {
    width: 100%;
    display: block;
    margin: 0 auto;
    padding-top: 5%;
}

#details-resources h1 {
    color: #50a2b6;
}

#details-resources p {
    padding-bottom: 2%;
}

/*------------------------- Responsive sizing starts here -------------------------*/


/* Laptop */
@media screen and (max-width: 991px) {

}

/* Tablet */
@media screen and (max-width: 767) {

}

/* Phone */
@media screen and (max-width: 497) {

}