@import url("https://fonts.googleapis.com/css?family=Rock+Salt");
@import url("https://fonts.googleapis.com/css?family=Figtree");
@import url("https://fonts.googleapis.com/css?family=Coming+Soon");


body {
    margin: 0;
    padding: 0;
}
* {
    font-family: Figtree, serif;
    font-size: 1rem;
}
ul {
    list-style-type: none;
    margin-bottom: 0;
    padding: 0;
}

.btn-teal {
    background-color: teal;
    border: None;
    color: white;
    border-radius: 5px;
    padding: 0.5rem;
    margin: 0.5rem;
    transition: 0.2s;
}

.btn-teal:hover {
    background: #00b3b3;
}

.btn-teal:focus {
    outline: None;
}

nav {
    background-color: #00b3b3;
}

nav ul {
    padding-left: 1.5rem;
    padding-bottom: 0.5rem;
}

nav li {
    margin: 0.5rem 0;
}

nav a {
    color: white;
    display: block;
}

nav a:hover {
    text-decoration: none;
    color: white;
    text-shadow: 0.01rem 0 0 currentColor, -0.01rem 0 0 currentColor;
}

#intro-container {
    background-image: url("../media/background2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    padding: 2rem;
}

.intro-img {
    max-width: 15%;
    height: auto;
    display: none;
}

#intro {
    color: white;
    background-color: teal;
    width: 80%;
    margin: 2rem;
    padding: 1rem;
    border-radius: 5px;
    font-size: 1.5rem;
    text-align: center;
}

.topic-header {
    color: white;
    background-color: #00b3b3;
    border-radius: 5px;
    font-size: 1.5rem;
    padding: 1rem;
    text-align: center;
}

.email-link {
    color: #99ffff;
}

.email-link:hover {
    text-decoration: underline !important;
    color: #99ffff;
}

.dark-email-link {
    color: #00b3b3;
}

.side-container {
    background-image: url("../media/review-background-mono.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
    border: 5px #00b3b3 solid;
    padding: 2rem;
    color: white;
}

.stars {
    color: yellow;
}

footer {
    font-size: 1.5rem;
    background: teal;
    text-align: center;
    margin: 0;
    padding: 1rem 0 0 0;
}

footer a {
    color: #99ffff;
}

.social span {
    font-size: 2rem;
    margin: 0.5rem;
}

.large-text {
    font-size: 1.5rem;
}

/* medium sized devices */
@media screen and (min-width: 768px) {
    #intro {
        width: 50%;
    }
    .intro-img {
        display: block;
    }
    #index-header {
        width: 80%;
        text-align: left;
    }
}

#about-img {
    max-width: 100%;
    height: auto;
}

.emphasise {
    font-size: 1.1rem;
    /*font-weight: bold;*/
    color: #99ffff;
}

.question {
    background-image: url("../media/review-background-mono.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
    border: 5px #00b3b3 solid;
    padding: 2rem;
    margin: 1rem;
    color: white;
}

#answers-btn {
    margin: 1rem;
    border: none;
    background-color: #00b3b3;
    border-radius: 5px;
    padding: 1rem;
    color: white;
}

@media screen and (min-width: 768px) {
    .year-list {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 1rem;

    }
}

/* large sized devices */
@media screen and (min-width: 992px) {

    #collapse-menu {
        display: flex;
        justify-content: space-evenly;
        gap: 2rem;
        align-content: center;
        padding: 0;
        margin: 0.6rem;
    }

    #intro {
        width: 50%;
        padding: 2rem 0.5rem;
    }

    nav {
        align-content: stretch;
        justify-content: center;
    }

    #menu-btn {
        display: none;
    }

    #index-header {
        width: 60%;
    }

    #answers-btn {
        width: 30%;
    }

}