*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: Arial, sans-serif;
}

body {
    background-color: #181617;
    color:white;
    width:100%;
    height:100vh;
    overflow-x:hidden;
}

html{
    scroll-behavior: smooth;
}

header {
    position: fixed;
    top:0;
    left:0;
    padding:1rem 15%;
    width:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background-color: #242424;
    padding-top:20px;

    .name {

        color:white;
        font-size:3rem;
        cursor: pointer;
        transition: 0.5s ease;
    }
    
    .name:hover{
        color: #ff6347;
        transform:scale(1.1)
    }
    
    nav a {
        font-size:1.5rem;
        color:white;
        margin-left:4rem;
        border-bottom: 3px solid transparent;
        transition: 0.3s ease;
    }
    
    nav a:hover, nav a:active {
        color: #ff6347;
        border-bottom: 3px solid #ff6347;
    }
}

@media(max-width:1280px) {
    header{
        nav {
            position:absolute;
            display:none;
            top:0;
            right:0;
            width:40%;
            border-left:3px solid #ff6347;
            border-bottom:3px solid #ff6347;
            border-top: 3px solid #ff6347;
            border-bottom-left-radius: 2rem;
            border-top-left-radius: 2rem;
            padding: 1rem solid;
            background-color: #242424;
        }
    
        nav.active{
            display:block;
        }
    
        nav a {
            display:block;
            font-size: 2rem;
            margin: 3rem 0;
        }
    
        nav a:hover, nav a:active {
            padding:1rem;
            border-radius:0.5rem;
            border-bottom: 0.5rem solid #ff6347; 
        }
    }
}

section{
    min-height: 50vh;
    padding:3rem 15% 3rem;
}

.profile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap:8rem;
}

.profile-content{
    font-size:2rem;
    text-align: left;
    margin-bottom: 1rem;
}

.profile-image {
    border-radius: 50%;
}

.profile-image img {
    position: relative;
    width: 16vw;
    border-radius: 50%;
    outline:solid;
    outline-color:#ff6347;
    outline-width: 4px;
}

#Projects nav {
    display: flex;
    justify-content: left;
    align-items: center top;
    vertical-align:top;
    gap:2rem;
    margin-bottom: 2rem;
}

#Projects .project-image{
    margin-top:3rem;
}

#Projects .project-image img{
    position: relative;
}

#Projects h1 {
    font-size:2.5rem;
}

#Projects h2{
    font-size:2.5rem;
    color: #ff6347;
}

#Projects h3{
    font-size:1.2rem;
    color: #ff9c8b;
}

#Projects b{
    color:#ff6347;
}

#Projects p{
    margin-bottom: 10px;
}

.award-image img {
    position:relative;
    max-width:12vw;
    max-height:auto;
    margin:auto;
    vertical-align: middle;
}

.store-page{
    display: flex;
    justify-content:left;
    align-items: left;
    margin-left:1rem;
    margin-right:3rem;
}

.store-page img{
    position: relative;
    max-width:4rem;
    max-height:auto;
    margin-top: 2rem;
    border-radius: 50%;
}


.store-page a{
    transition: 0.3s ease;
}

.store-page a:hover{
    transform: scale(1.2);
}

#About h1 {
    font-size:2.5rem;
}

#About h2{
    font-size:1.5rem;
    color: #ff6347;
    margin-bottom: 10px;
}

#About p{
    margin-left:25px;
    margin-right:25px;
    margin-bottom: 10px;
}

#About h3{
    font-size:1.2rem;
    color: #ff9c8b;
}

#About b{
    color:#ff9c8b;;
}

#Contact nav {
    display: flex;
    justify-content: left;
    align-items: center top;
    vertical-align:top;
    gap:2rem;
    margin-bottom: 6rem;
}

#Contact h1 {
    font-size:2.5rem;
}

#Contact .media{
    margin-top:2rem;
}

#Contact .media img{
    position: relative;
}

.media-icon{
    display: flex;
    justify-content:left;
    align-items: left;
    margin-left:1rem;
    margin-right:1rem;
}

.media-icon img{
    position: relative;
    max-width:4rem;
    max-height:auto;
    margin-top: 2rem;
    border-radius: 50%;
}

.media a{
    transition: 0.3s ease;
}

.media a:hover{
    transform: scale(1.2);
}


.media-icon a{
    transition: 0.3s ease;
}

.media-icon a:hover{
    transform: scale(1.2);
}

footer{
    height:26vh;
    margin: 0 1rem;
}

footer p {
    text-align: center;
}


@media(max-width:1000px) {
    .profile {
        gap:4rem;
    }

    #Projects {
        gap:4rem;
    }

    .project-divider{
        size:10rem;
    }
}

@media(max-width:995px) {
    .profile{
        flex-direction: column;
        margin: 1rem 1rem;
    }

    .profile .profile-content {
        font-size: 1.25rem;
        padding:0rem 0% 0rem;
    }

    .name{
        font-size:2.5rem;
    }

    .profile-image img{
        width:15rem;
    }

    #Projects nav {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 1rem 1rem;
    }

    #Projects .header-image img{
        max-width: 100%;
        height:auto;
    }

    #Projects .project-content {
        font-size: 1.25rem;
        padding:0rem 0% 0rem;
    }

    #Projects .store-page{
        flex-direction: column;
        margin: 0rem 0rem;
        align-items: center;
    }

    #Projects .project-image h3{
        text-align: center;
    }

    #Contact .media{
        flex-direction: column;
        align-items: center;
    }
}