:root {
    --main-color:#000000;
    --white:#f7f9f9;
    --rich-black:#042A2B;
    --yellow:#fffc2f;
    --red:#ff2f2f;
}

*{
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    margin: 0;
    padding: 0;
}
.hero{
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: url(/img/pexels-merlin-lightpainting-10874572.jpg) no-repeat;
    background-size: cover;
}
.hero h2{
    font-size: 4em;
    font-weight: 900;
    color: var(--yellow);
}
.hero h3{
    font-size: 2em;
    color: var(--white);
    font-weight: 200;
}
.hero a{
    text-decoration: none;
    font-weight: 900;
    border-radius: 1rem;
    border: none;
    margin: 20px 0;
    padding: 10px 15px;
    background: var(--yellow);
    color: var(--main-color);
    font-size: 1.5em;
    transition: all 0.4s ease-in;
}
.hero a:hover{
    transform: scale(1.1);
}
.intro{
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: var(--red);
    background-size: cover;
}
.intro h2{
    color: var(--white);
    font-size: 4em;
    margin: 5px;
}
.intro p{
    margin: 20px 0 0 0;
    line-break: auto;
    font-size: 18px;
    width: auto;
    max-width: 350px;
    color: var(--white);
}
.page{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.page-name{
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}
.page-name h2{
    color: var(--white);
    font-size: 3em;
    margin: 50px 0;
}
.page-name img{
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    margin: 0 5px;
    border-radius: 0.5rem;
}
.page-name a{
    color: var(--white);
    font-weight: 900;
    background: black;
    margin: 30px 0;
    border-radius: 1rem;
    padding: 16px 32px;
    text-decoration: none;
    transition: 0.4s ease-in;
    font-size: 1.5em;
}
.page-name a:hover{
    transform: scale(1.1);
}

#be{
    background: #09296e;
}
#bw{
    background: #181818;
}
#aa{
    background: #9e9e9e;
}
#sw{
    background: #181818;
}
#cp{
    background: #361f36;
}
#nm{
    background: #bebebe;
}
#ca{
    background: #dee94e;
}
#cd{
    background: #af0404;
}
#kc{
    background: #9522f3;
}