@import url('https://fonts.googleapis.com/css?family=Karla:400,400i,700,700i&display=swap');

html {
    font-family: 'Karla', sans-serif;
    background-color: #1B1C1C;
    color: rgba(255, 255, 255, 0.76);
}

/* #001436; */

body {

}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.54;
}

.main {
    width: 60%;
    margin: 4rem auto 4rem auto;
}

.desc {
    max-width: 50%;
}

.buttons {
    margin-top: 1.5rem;
}

.bigbuttondiv {
    display: block; 
    margin: 10px 0 7px -1px;
}

.bigbutton {
    font-size: 1.4rem;
}

/*e57373 */

a {
    font-weight: 600;
    background-image:
        linear-gradient(
            to bottom, #701c99 0%,
            #e57373 100%
        );
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 4px 4px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.76);
    transition: background-size .2s, color .2s;
    width: auto;
}

a:hover {
    color: #002b36;
    background-size: 4px 50px;
}

.small {
    background-size: 2px 2px;
}

.topbar {
    margin-bottom: 1rem;
    font-weight:600;
    letter-spacing: .1em;
}

#footer {
    display: none;
    position: absolute;
    left: 100px;
    right: 0;
    height: 20px;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0.8;
}

#footer p {
    margin: 0;
    font-size: 0.9rem;
}

.socials {
    margin-top: 3rem;
}

.socials a {
    font-size: 1.3rem;
    background-image: none;

}

.socials a:hover {
    color: rgba(255, 255, 255, 1);
}

.padding {
    padding-left: 1.5rem;
}

@media(max-width: 700px) {
    .main {
        width: 90%;
        margin: auto;
    }
    .desc {
        max-width: 100%;
        margin-top: 10px;
    }
    #footer {
        padding-top: 20px;
    }
}

@media(min-width: 1100px) {
    html {
        background-image: url("assets/cometai.png");
        background-size: 46rem;
        background-repeat: no-repeat;
        background-position: -5vh 0vh;
    }
}

