* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-size: 18px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #1B3C53;
}



/*[--------======== Header ========--------]*/

/*----==== Header Element ====----*/
header {
    text-align: center;
    background-color: #456882;
    height: 50%;
    width: 100%;
}

/*--== Profile Picture Class ==--*/
.profilePic {
    margin-top: 12px;
    margin-bottom: 10px;
    margin-left: 10px;
    max-width: 150px;
    max-height: 150px;
    border: 5px solid #1B3C53;
    border-radius: 100px;
    box-shadow: 0px 0px 10px #1B3C53;
    transition: 0.3s;
}

.profilePic:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 15px #1B3C53;
}

/*-= Profile ID =-*/
#profile {
    padding: 10px;
    border-radius: 20px 20px 0px 0px;
    background-color: #234C6A;
    color: #D2C1B6;
    box-shadow: 0px 0px 10px #152e41;
}

#profile h1 {
    margin-bottom: 3px;
    font-size: 24px;
}

/*--== Socials Class ==--*/
.socials {
    margin-top: 10px;
    display: block;
}

.socials a {
    margin-left: 5px;
    margin-right: 5px;
}

/*--== Links Class ==--*/
.links {
    height: 50px;
    width: 50px;
    border-radius: 100px;
    background-color: #456882;
    border: 2px solid #456882;
    box-shadow: 0px 0px 10px #456882;
    transition: 0.3s;
}

.links:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 20px #456882;
}



/*[--------======== Main ========--------]*/

/*----==== Section Element ====----*/
section {
    padding: 10px;
    margin: 10px 5px 10px 5px;
    border: 3px solid #D2C1B6;
    border-radius: 5px;
    background-color: #234C6A;
    color: #D2C1B6;
    box-shadow: 0px 0px 5px #152e41;
}

section h2 {
    font-size: 20px;
}

section hr {
    margin-bottom: 7px;
    background-color: #D2C1B6;
    border-color: #D2C1B6;
    border-radius: 5px;
    height: 5px;
}

section p {
    text-align: justify;
}

/*--== Info Class ==--*/
.info summary {
    font-size: 20px;
}

.info ul, ol{
    margin-left: 25px;
}

.info a {
    text-decoration: none;
    color: #D2C1B6;
}

.info a:hover {
    text-decoration: underline;
}

.info img {
    height: 135px;
    border: 5px solid #456882;
    border-radius: 5px;
    transition: 0.3s;
}

.info img:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 10px 1px #456882;
}

/*--== Other Classes ==--*/
#skills table {
    margin: auto;
}

#hobbies li {
    list-style-type: none;
}

#gmodstuff li, #youtubers li {
    list-style-type: disc;
}

#videogames li, #websites li {
    list-style-type:decimal;
}

#gmodstuff p:hover {
    text-decoration: underline;
}

#videogames h2 {
    font-size: 18px;
}

#projects li{
    list-style-type: none;
}

/*----==== Details Element ====----*/
details li {
    /*margin-top: 10px;*/
}

details img {
    margin-top: 10px;
}

.artists {
    margin-left: 11px;
}

/*----==== Summary Element ====----*/
summary {
    cursor: pointer;
}

summary:hover {
    text-decoration: underline;
}

/*----==== Table Element ====----*/
table {
    border: 3px solid #456882;
    border-radius: 10px;
}

table td, th {
    padding: 3px;
    text-align: center;
    font-size: 15px;
    border: 3px solid #456882;
    border-radius: 5px;
    background-color: #D2C1B6;
    color: #234C6A;
}



/*[--------======== Footer ========--------]*/

/*----==== Footer Element ====----*/
footer {
    padding: 10px;
    text-align: center;
    background-color: #234C6A;
    color: #D2C1B6;
    box-shadow: 0px 0px 5px black;
}

footer b {
    font-size: 15px;
}

footer p {
    font-size: 15px;
}

footer a {
    text-decoration: none;
    color: #D2C1B6;
}

footer a:hover {
    text-decoration: underline;
}

footer #reserved {
    margin-top: 5px;
}

footer img{
    height: 29px;
}

/*[--------======== Desktop UI ========--------]*/
@media (min-width: 1024px) {
    .for-desktop {
        margin: 20px;
        display: flex;
    }

    body {
        font-size: 14px;
    }

    /*----==== Header Element ====----*/
    header {
        margin-right: 20px;
        border-radius: 20px;
        width: 50%;
        box-shadow: 0px 0px 5px black;
    }

    header .profilePic {
        margin-top: 50px;
        margin-bottom: 50px;
        width: 150px;
        height: 150px;
        border: 5px solid #1B3C53;
        border-radius: 100px;
    }

    /*-= Profile ID =-*/
    #profile {
        padding: 10px;
        padding-bottom: 28px;
        border-radius: 20px;
    }

    #profile h1 {
        margin-top: 10px;
        font-size: 20px;
    }

    #profile p {
        margin-top: 10px;
        margin-bottom: 15px;
        font-size: 14px;
    }
    
    /*----==== Section Element ====----*/
    section {
        margin: 11px 20px 20px 20px;
        padding: 15px;
        font-size: 30px;
    }

    section h2 {
        font-size: 20px;
    }

    section p, a, li{
        font-size: 17px;
    }

    /*--== Info Class ==--*/
    .info summary {
        font-size: 15px;
    }
    .info img {
        height: 300px;
        border: 5px solid #456882;
        border-radius: 5px;
    }

    /*----==== Footer ====----*/
    footer {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    footer p {
        font-size: 15px;
    }

    footer #reserved {
        margin: auto auto auto 20px;
    }

    footer #neocities {
        margin: auto 20px auto auto;
    }
}