@font-face {
    font-family: font;
    src: url(Roboto-Regular.ttf);
}
body {
    font-family: font;
    margin:0;
    padding:0;
    overflow-x:hidden;
    font-size: 24px;
    background-color: #1E2749;
    color: #FAFAFF;
}
.banner-area {
    background-image: url(1474291154383.jpg);
    background-size: cover;
    background-position: center center;
    top: 0px;
    padding: 10px 0px;
    height: 100vh;
    width: 100%;
    position: fixed;
}
.banner-area:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #30343F;
    opacity: .7;
    z-index: -1;
    transition: 1s;
}
.banner-area h1 {
    padding-top: 18%;
    font-size: 100px;
    text-align: center;
    opacity: 1;
}
.container {
    background-color: rgba(30, 39, 73, 0.8);
    color: #FAFAFF;
    width: 100%;
    height: 100%;
    top: 1920px;
    border-radius: 50px;
    padding-top: 2%;
    position: relative;
}
.text-box {
    border-radius: 25px;
    background-color: #30343F;
    padding: 40px;
    margin: 40px auto 40px auto;
    width: 70%;
}
.text-box p {
    text-align: justify;
}
.text-box h3 {
    text-align: justify;
}
.text-box:hover {
    background-color: #273469;
    width: 74%;
}
.row {
    min-height: 300px;
    margin: auto;
    width: 78%;
    display: flex;
    margin-bottom: 40px;
}
.skill-box {
    flex: 1;
    border-radius: 25px;
    background-color: #30343F;
    padding: 40px;
    margin: 2%;
    display: inline-block;
}
.skill-box span {
    font-size: 20px;
    text-align: justify;
}
.skill-box h3 {
    text-align: justify;
}
.skill-box img {
    vertical-align: middle;
}
.skill-box:hover {
    background-color: #273469;
    transition: 500ms;
}
.github-box {
    flex: 1;
    border-radius: 25px;
    background-color: #30343F;
    padding: 40px;
    margin: 2%;
}
.github-box h3 {
    text-align: justify;
}
.github-box img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.github-box:hover {
    background-color: #273469;
    transition: 500ms;
}
.repos-row{
    display: flex;
}
.repos {
    flex: 50%;
    padding: 40px;
}
.repos img {
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.contact{
    margin: 100px auto 50px auto;
    text-align: center;
}
.contact h1{
    margin-bottom: 100px;
}
.contact-row{
    display: flex;
    justify-content: center;
}
.contact img{
    vertical-align: middle;
}
.contact a {
    flex: 33%;
    margin: 20px;
    border-radius: 25px;
    background-color: #9970FF;
    padding: 20px;
    color: #FAFAFF;
    text-decoration: none;
    transition: 250ms;
}
.contact a:hover{
    background-color: #FAFAFF;
    color: #9970FF;
}
.contact a:active{
    background-color: #757575;
    color: #b394ff;
}
.footer {
    display: flex;
    margin-top: 10%;
    padding: 20px;
    background-color: #30343F;
    justify-content: center;
    transition: 500ms cubic-bezier(0, 1.18, 1, 1);
}
.footer a {
    color: #FAFAFF;
    text-decoration: none;
}
.footer:hover {
    background-color: #273469;
}
.reveal{
    position: relative;
    opacity: 0;
    transition: opacity 1s ease-in, background-color 500ms cubic-bezier(0, 1.18, 1, 1), width 500ms cubic-bezier(0, 1.18, 1, 1);
}
.reveal.active{
    opacity: 1;
}
.solutionBox-row {
    min-height: 200px;
    margin: auto;
    width: 78%;
    display: flex;
    margin-bottom: 40px;
}
.topic {
    align-items: last baseline;
    font-size: 30px;
    flex: 33%;
    margin: 10px;
    border-radius: 15px;
    background-color: #ffffff62;
    color: #000000;
    text-decoration: none;
    transition: 250ms;
}
@media (max-width: 1300px){
    .banner-area h1 {
        padding-top: 80%;
        font-size: 100px;
        text-align: center;
        opacity: 1;
    }
    .container {
        background-color: rgba(30, 39, 73, 0.8);
        color: #FAFAFF;
        width: 100%;
        height: 100%;
        top: 2770px;
        border-radius: 50px;
        padding-top: 2%;
        position: relative;
    }
    .row {
        display: flex;
        min-height: 950px;
        margin: auto;
        width: 78%;
        display: flex;
        margin-bottom: 40px;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .github-box {
        flex: 1;
        border-radius: 25px;
        background-color: #30343F;
        padding: 40px;
        margin: 2%;
    }
    .repos-row{
        min-height: 500px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .contact-row{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .contact a{
        flex: 33%;
        border-radius: 25px;
        background-color: #9970FF;
        padding: 15px;
        color: #FAFAFF;
        text-decoration: none;
        transition: 500ms;
    }
    
}