@font-face {
    font-family: 'Oswald';
    src: url(media/fonts/Oswald-VariableFont_wght.ttf);
}

html {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin-left: 10px;
    margin-right: 20px;
    color: white;
    max-width: 95%;
    position: absolute;
    left: 20px;
}

body {
    background-color: #2F2FA2;
    display: flex;
    flex-direction: column;
    padding-right: 20px;
}

nav {
    border: 2px solid black;
    background-color: #F64C72;
    top: 0;
    left: 0;
    z-index: 9999;
    padding: 5px 5px;
    width: 100%;
    position: fixed;
    display: flex;
    overflow: hidden;
}

nav a {
    justify-content: center;
    padding: 20px 10px;
    color: white;
}

h3 a {
    color: white;
}

.aboutme {
    height: auto;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    display: flex;
}

.aboutme img {
    max-width: 300px;
    max-height: 250px;
    border-radius: 30%;
    margin: 20px 20px;
}

.aboutme.container {
    display: flex;
    flex-wrap: wrap;
}

.projects.container {
    display: flex;
}

.collapsible {
    color: white;
    cursor: pointer;
    border: none;
    background-color: #2F2FA2;
    font-size: 18px;
    font-family: 'Oswald';
    padding-bottom: 20px;
}

.projectcontent {
    overflow: hidden;
    margin-left: 50px;
    max-height: 0;
    transition: max-height 0.2s ease-out;
}

.projects p{
    max-width: 60%;
}

.logo {
    background-color: #2F2FA2;
    height: 50px;
    width: auto;
    margin: 10px 20px 10px 0;
    top: 20px;
    position: relative;
}

table {
    width: 30%;
    margin-bottom: 50px;
}

td {
    text-align: center;
    vertical-align: bottom;
}

#skillstable td img {
    vertical-align: middle;
}

h1 {
    font-size: 3rem;
    padding-top: 80px;
}

h2 {
    font-size: 2rem;
}

#aboutme {
    padding-top: 100px;
    margin-top: -100px;
}

#projects {
    padding-top: 100px;
    margin-top: -100px;
}

#skills {
    padding-top: 100px;
    margin-top: -100px;
}

.collapsible:after {
    content: '\2192'; 
    font-size: 13px;
    float: left;
    margin-left: 5px;
    margin-right: 20px;
  }
  
  .active:after {
    content: "\2193"; /* Unicode character for "minus" sign (-) */
  }

@media only screen and (max-width: 480px) {
    .aboutme.container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .aboutme {
        flex-wrap: wrap;
    }
    html {
        margin-left: 0;
    }
}

@media only screen and (max-width: 1080px) {
    .aboutme {
        justify-content: center;
        align-items: center;
    }

}