body {
    background-image: linear-gradient(#030352, #090c24);
    background-attachment: fixed; /*fixed makes the gradient extend to the bottom*/
}

.topbox {
    display: flex;
    justify-content: center;
    gap: 5%;
}

.top-r {
    margin-top: 10px;
}

@media (max-width: 700px) { /*Very abrupt but works for now*/
    .top-r {
        display: none;
    }
    .konata {
        display: none;
    }
}

.top-c {
    margin-top: 6px;
}

#centerbox {
    margin-top: 10px;
    margin-bottom: 3%;
    
    /*shouldn't be needed due to first @media but it doesn't work properly, not sure why*/
    margin-left: 20%; 
    margin-right: 20%;

    border-style: solid;
    border-color: blueviolet;
    border-radius: 4px;
    border-width: 2px;
}

@media (max-width: 1440px) {
    #centerbox {
        margin-left: 20%;
        margin-right: 20%;
    }
}

@media (max-width: 1200px) {
    #centerbox {
        margin-left: 15%;
        margin-right: 15%;
    }
}

@media (max-width: 960px) {
    #centerbox {
        margin-left: 10%;
        margin-right: 10%;
    }
}

@media (max-width: 640px) {
    #centerbox {
        margin-left: 5%;
        margin-right: 5%;
    }
}

.line {
    border: solid;
    background-color: blueviolet;
    border-radius: 0px;
    border-width: 2px;
}

.sections {
    /*display: flex; breaks hr's */ 
    border-style: solid;
    flex-direction: column;
    justify-content: space-around;
    color: blueviolet;
}

.text {
    padding-left: 10px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #41adb4;
}

.textSocials {
    padding-left: 10px;
    text-align: center;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #41adb4;
}

.textSocials a { /*a is html tag for links*/
    color: aquamarine;
    text-decoration: none; /*removes hyperlink underlines*/
}

.textSocials a:hover { /*hovering cursor on the a(link) tags*/
    color: antiquewhite;
}

