:root
{
    --text: #FFB0D0;
    --title: #80D0FF;
    --dark: #400020;
    --button-hover: #a00050;
}

body
{
    background: linear-gradient(45deg, #47accc 0%, #956a9c 60%);
    height: 10%;
    margin: 5% 10%;
    background-repeat: no-repeat;
    background-attachment: fixed;

    font-family: 'Cairo';
    font-size: 16pt;
    line-height: 110%;
    color: var(--text);
}

h1, h2
{
    text-align: center;
}

h2
{
    margin-bottom: 0.5cm;
}

#top
{
    margin: 0;
    font-weight: normal;
    color: var(--title);
    margin-bottom: -10px;
}

.subtitle
{
    font-size: 75%;
    text-align: center;
    margin-top: 0.66cm;
}

a
{
    color: var(--title);
}

.main
{
    background: linear-gradient(45deg, #40002080 20%, #00204080 80%);
    padding: 5% 7.5%;
    border-radius: 25px;
    border: 3px solid var(--dark);
}

hr
{
    height: 3px;
    border-width: 0;
    background-color: var(--dark);
}

hr.minor
{
    height: 1px;
    margin: 0% 3% 2% 3%;
    background-color: var(--text);
}

.columns
{
    width: 100%;
    table-layout: fixed;
}

.topnav a, .socials a
{
    color: white;
    text-decoration: none;
    padding: 15px 15px;
    border-radius: 5px;
    background-color: var(--dark);

    text-align: center;
    transition: background-color 0.25s, color 0.25s;

    flex: 1%;
    margin: 0px 5px;
}

.portfolio-main
{
    text-align: center;
}

div.portfolio-desc
{
    border: 2px solid #00000040;
    border-radius: 25px;
    padding: 2%;
    margin-bottom: 0.5cm;
}

p.portfolio-desc
{
    text-align: justify;
}

.portfolio-title
{
    text-align: center;
    font-size: 120%;
}

.topnav a.current_page
{
    background-color: white;
    color: black;
}

.topnav a:hover, .topnav a:focus, .socials a:hover, .socials a:focus
{
    background-color: var(--button-hover);
    color: white;
}

.topnav, .socials
{
    display: flex;
    flex-direction: row;
}