@import url('https://fonts.googleapis.com/css?family=ABeeZee|Roboto|Comfortaa|Alegreya Sans SC|Barlow|Albert Sans|Acme|Oxygen Mono');
@import url('https://fonts.cdnfonts.com/css/whitney-2');
@import url('https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css');
@import url('./themes.css');

:root {
    --primary: #4790D9;
    --primary-hover: #3a80c2;
    --secondary: #FFAB00;
    --secondary-hover: #faaf02;
    
    --text-main: hsl(250, 0%, 80%);
    --text-dark: hsl(250, 0%, 100%);
    --text-gray: hsl(250, 0%, 50%);
}
body {
    --theme-hue: 250;
    --theme-sat: 0%;

    --bg-body: hsl(var(--theme-hue), var(--theme-sat), 15%);
    --bg-sidebar: hsl(var(--theme-hue), var(--theme-sat), 10%);
}
html {
    font-size: 62.5%;
    background: var(--bg-body);
}
* {
    color: var(--text-main);
    font-size: 1.6rem;
    font-family: 'Roboto';
    box-sizing: border-box;
    overscroll-behavior: none;
    text-decoration: none;
}
body {
    background: var(--bg-body);
    margin: 0;
    display: grid;
    place-items: center;
    min-height: 100vh;
    overflow: hidden;
}

main {
    display: flex;
    gap: 1rem;
    max-width: 80%;
}

.info {
    flex: 1;
}
.title {
    font-size: 7.5rem;
    color: var(--secondary);
    font-family: 'Oxygen Mono';
    text-shadow: 0px 0px 30px var(--secondary);
    margin: 0;
}
.actions {
    display: flex;
    gap: 1rem;
}
.action {
    background: var(--primary);
    border: none;
    padding: .75rem;
    border-radius: 50px;
    color: #fff;
    width: 120px;
    text-align: center;
}
.image {
    flex: 1;
}
.image img {
    max-width: 100%;
    display: block;
}

footer {
    position: fixed;
    bottom: 0;
    padding: 1rem;
    text-align: center;
}
footer ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}
footer ul li:first-child {
    list-style: none;
}
footer ul li {
    list-style-position: inside;
}
footer h2 {
    font-size: 1.3rem;
    font-weight: 100;
    color: var(--text-gray);
    margin: 0;
}
footer ul li a {
    color: var(--primary);
    font-size: 1.2rem;
}
