@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Raleway');
@import url('https://fonts.googleapis.com/css2?family=Questrial');

@font-face {
    font-family: 'Crack Man';
    src: url('../assets/crackman.front-regular.ttf'); /* format("truetype"); */
}

:root {
    --bg-color: #f6f8f9;
    --orange: #ECA44D44;
    --card-color: #e9f0f4;
    --accent-color: #ECA44D44;
    --accent-color-dark: #0067d4;
    --light-red: #f8eced;
    --inner-margin: 30px;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #000;
    /*var(--textColor);
    background: linear-gradient(45deg, var(--bgColor1), var(--bgColor2), var(--bgColor2), var(--bgColor2), var(--bgColor1));*/
    background-color: var(--bg-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Questrial', sans-serif;
    font-weight: 500;
}

img {
    width: 18vw;
}

.screenshot {
    border-radius: 35px;
    border: 5px solid #333;
    position: relative;
}

.page {
    height: 85vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page:nth-child(even) {
    background-color: var(--accent-color);
}

#title-page {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 99vh;
}

#title-page h1 {
    text-align: left;
    margin: 0;
    font-size: 5rem;
    letter-spacing: -10px;
    margin: var(--inner-margin);
    font-family: 'Crack Man';
}

a {
    text-decoration: underline;
    color: #000;
}

ul {
    margin-left: 40px;
    text-align: left;
}

#top-bar {
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
}

.left,
.right {
    margin: 40px;
    text-align: center;
}

.description {
    margin-top: 10px;
    font-size: 18px;
    width: 600px;
}

.team {
    height: 70vh;
}

.team h1 {
    margin-bottom: 30px;
}

.team img {
    width: 150px;
    border-radius: 100%;
    margin: 20px;
    box-shadow: 3px 0px 3px 0px rgba(0, 0, 0, 0.2);
}

.team .team-content {
    text-align: center;
}

.team .team-content .member {
    width: 20%;
    margin: 20px;
}

.team .team-content .imgs {
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer {
    background-color: #D4DAE1;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer p {
    margin: 20px;
}

#login {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    margin: 15px;
}

.extra #news {
    width: 50px;
    margin-right: 30px;
}

.extra-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

#tickit-link {
    width: 20px;
    margin-left: 30px;
}

.logo {
    width: 70px;
    margin: 20px;
}

#join-team {
    padding: 20px;
    margin: 20px auto;
    width: 250px;
    border-radius: 20px;
    background-color: var(--orange);
    cursor: pointer;
    transition: 0.3s;
}

#join-team a {
    color: #fff;
}

#join-team:hover {
    background-color: var(--accent-color-dark);
}

.line {
    margin: 10px;
    height: 30px;
    width: 1px;
    background-color: #333;
}

#link-bar {
    display: flex;
    justify-content: center;
    align-items: center;
}

#link-bar img {
    width: 25px;
    margin: 15px;
}

#footer .top {
    display: flex;
}

.small-page {
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.small-page .info-item img {
    width: 80px;
    margin: 20px;
}

.small-page .info-item {
    width: 27%;
    border: 1px #ccc solid;
    height: 35vh;
    margin: 20px;
    padding: 20px;
    transition: 0.3s;
}

.small-page .info-item:hover {
    border: 1px #aaa solid;
}

.small-page .info-item h1 {
    margin: 10px;
}

.google-play-badge {
    width: 200px;
    margin: 20px;
}