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

/* Reset CSS */

*,
html,
body,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    /* padding: 0; */
}

body {
    min-height: 100vh;
    font-family: 'Grandstander', 'Verdana', cursive, Sans-serif;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Containers style */

.container {
    margin: 5%;
    filter: drop-shadow(2px 5px 23px #000);
}

@media screen and (min-width: 900px) {
    .container {
        margin: 5% 20%;
    }
}

.theme,
.options {
    border-radius: 7px;
    margin-bottom: 5px;
    text-align: center;
    border: 2px solid #fff;
}

.theme {
    background: rgb(5, 5, 5);
    background: linear-gradient(
        0deg,
        rgba(5, 5, 5, 1) 28%,
        rgba(120, 120, 120, 1) 61%,
        rgba(255, 255, 255, 1) 100%
    );
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.options {
    height: 7%;
    background-color: gainsboro;
    padding: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

/* Text style */

.label {
    font-size: 2rem;
    margin: 1rem 0 0;
    padding-top: 10px;
}

.label2 {
    font-size: 1.2rem;
    margin: 1rem 0;
}

/* Image style */

img {
    border-radius: 10px;
    width: 40vh;
    height: auto;
    filter: drop-shadow(2px 5px 10px #000);
}

/* Buttons style */

button {
    border: none;
    border-radius: 5px;
    font-size: 20px;
    height: 40px;
    width: 90px;
}

button:hover {
    border: solid 3px rgb(211, 181, 15);
    border-radius: 10px;
    font-size: 22px;
}

.dark {
    background-color: rgb(42, 41, 48);
    color: ghostWhite;
}

.light {
    background-color: ghostWhite;
}

.grey {
    background-color: rgb(114, 111, 111);
    color: ghostWhite;
}

/* Footer style */

footer {
    align-self: center;
    font-size: 0.9rem;
}

footer ul {
    list-style: none;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    row-gap: 0.5rem;
    margin-bottom: 0;
    padding: 0.5rem 0;
}

@media screen and (min-width: 900px) {
    footer ul {
        flex-direction: row;
        font-size: 1.2rem;
    }

    .footer__span--display-none {
        display: none;
    }
}

footer ul li {
    padding-right: 0.2rem;
}

footer ul li a {
    text-decoration: none;
    color: #000;
}

footer ul li a:hover,
ion-icon:hover {
    color: rgb(211, 181, 15);
    font-weight: bold;
}

ion-icon {
    vertical-align: middle;
    font-size: 1.8rem;
    margin-right: 0.2rem;
}
