@font-face {
    font-family: Helvetica Neue;
    src: url('fonts/Helvetica\ Neue\ Medium\ Extended.ttf');
}

@font-face {
    font-family: Helvetica Neue Thin;
    src: url(fonts/HelveticaNeue\ Thin.otf);
}

@font-face {
    font-family: vipnagorgialla rg it;
    src: url(fonts/vipnagorgialla\ rg\ it.otf);
}

@font-face {
    font-family: vipnagorgialla rg;
    src: url(fonts/vipnagorgialla\ rg.otf);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (max-width:480px) {

    html,
    body {
        overflow-x: hidden
    }

    body {
        position: relative;
    }
}

.top-background-img {
    height: 100vh;
    width: 100%;
    background-image: url("images/pchead.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (max-width: 1200px) {
    .top-background-img {
        background-position: 50%;
    }
}

@media (max-width: 480px) {
    .top-background-img {
        height: 675px;
        background-position: 50%;
    }
}

nav {
    color: #000;
    display: flex;
    justify-content: center;
}

nav .mainMenu {
    margin-top: 5px;
    display: flex;
    list-style: none;
}

nav .mainMenu li a {
    display: inline-block;
    padding: 15px;
    text-decoration: none;
    color: #fff;
    font-size: 1.7rem;
    font-family: vipnagorgialla rg it;
    transition: all .3s ease 0s;
}

nav .mainMenu li a:hover {
    transform: scale(1.2);
}

nav .openMenu {
    font-size: 2rem;
    margin: 20px;
    display: none;
    cursor: pointer;
}

nav .mainMenu .closeMenu,
.icons i {
    font-size: 2.5rem;
    display: none;
    cursor: pointer;
}

.fa-youtube {
    color: #000;
}

.fa-spotify {
    color: #000;
}

.fa-itunes-note {
    color: #000;
}

.fa-amazon {
    color: #000;
}

nav .logo {
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    font-family: vipnagorgialla rg;
    font-weight: 200;
}

@media(max-width: 1200px) {
    nav .logo {
        font-size: 1.25rem;
        margin-top: 12px;
    }

    nav .mainMenu li a {
        font-size: 1.2rem;
        padding-top: 25px;
    }

    nav {
        color: #fff;
        display: flex;
        justify-content: space-between;
    }

    nav .mainMenu {
        height: 100vh;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 10;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #fff;
        transition: top 1s ease;
        display: none;
    }

    nav .mainMenu .closeMenu {
        display: block;
        position: absolute;
        top: 20px;
        right: 30px;
        color: #000;
    }

    nav .openMenu {
        display: block;
        position: relative;
        right: 7px;
        top: 8px;
    }

    nav .mainMenu li a {
        color: #000;
        display: inline-block;
    }

    .icons i {
        display: inline-block;
        padding: 12px;
        color: #000;
    }
}

/* New Music START */

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 500px);
    grid-template-rows: repeat(2, 500px);
    column-gap: 15em;
    row-gap: 5em;
    justify-content: center;
    place-items: center;
    margin: 100px 0 100px 0;
}

.grid-container .presave {
    height: 60%;
    width: 60%;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
    margin-top: 25px;
    background-color: #9fb2c4;
    padding: 20px;
    cursor: pointer;
    font-family: vipnagorgialla rg it;
    color: white;
    text-decoration: none;
}

.grid-container a {
    text-decoration: none;
}

.grid-container .presave a {
    font-size: 20px;
    font-family: vipnagorgialla rg it;
    color: white;
    text-decoration: none;
    text-align: center;
}

.wiw {
    color: #000;
    font-size: 45px;
    font-family: vipnagorgialla rg it;
    text-align: center;
}

.wiw-subtext {
    color: #000;
    font-size: 25px;
    font-family: Helvetica Neue Thin;
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
}

.grid-container .presave-wrapper {
    width: 100%;
}

.grid-container .pellowclouds-img-wrapper img {
    height: 400px;
    width: 400px;
}

.grid-container .presave-wrapper .platform-icons {
    font-size: 2.5rem;
    display: grid;
    grid-template-columns: repeat(4, 0fr);
    gap: .25em;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.grid-container .presave-wrapper .platform-icons a {
    text-align: center;
}

.grid-container .presave-wrapper .platform-icons .fa-brands {
    padding: 15px;
    transition: all .3s ease 0s;
    cursor: pointer;
}

.grid-container .presave-wrapper .platform-icons .fa-brands:hover {
    transform: scale(1.2);
}

/* New Music END */

.text-wrapper {
    width: 100%;
    order: 4;
}

.text-wrapper .about-title {
    font-family: vipnagorgialla rg it;
    font-size: 45px;
    text-align: center;
}

.text-wrapper .about-paragraph {
    font-family: Helvetica Neue Thin;
    font-size: 25px;
    text-align: center;
    margin-top: 20px;
}

.text-wrapper #about-ffm {
    text-decoration: underline;
    color: #000;
}

.img-wrapper img {
    height: 400px;
    width: 400px;
}

/* About Me END */

/* GRID CONTAINER MEDIA QUERIES */

@media (max-width: 1200px) {
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        grid-template-rows: repeat(auto-fit, minmax(100px, 1fr));
        row-gap: 5em;
        column-gap: 10em;
        margin-top: 50px;
    }

    .wiw {
        font-size: 32px;
    }

    .wiw-subtext {
        font-size: 20px;
    }

    .grid-container .presave {
        width: 50%;
        height: 50%;
    }

    .grid-container .presave a {
        font-size: 17px;
    }

    .grid-container .presave-wrapper .platform-icons {
        font-size: 2rem;
        grid-template-columns: repeat(4, 0fr);
    }

    .text-wrapper {
        width: 90%;
        order: 0;
    }

    .text-wrapper .about-title {
        font-size: 32px;
    }

    .text-wrapper .about-paragraph {
        width: 50%;
        font-size: 20px;
        margin: 0 auto;
        margin-top: 20px
    }

    .grid-container .pellowclouds-img-wrapper img {
        width: 300px;
        height: 300px;
    }

    .img-wrapper img {
        width: 300px;
        height: 300px;
    }
}

@media (max-width:480px) {
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        grid-template-rows: repeat(auto-fit, minmax(100px, 1fr));
        row-gap: 5em;
        column-gap: 12em;
        margin-top: 50px;
    }

    .wiw {
        font-size: 32px;
    }

    .wiw-subtext {
        font-size: 20px;
    }

    .grid-container .presave {
        width: 60%;
        height: 60%;
    }

    .grid-container .presave a {
        font-size: 15px;
    }

    .grid-container .presave-wrapper .platform-icons {
        font-size: 2rem;
        grid-template-columns: repeat(4, 0fr);
    }

    .text-wrapper {
        width: 90%;
        order: 0;
    }

    .text-wrapper .about-title {
        font-size: 32px;
    }

    .text-wrapper .about-paragraph {
        font-size: 20px;
    }

    .grid-container .pellowclouds-img-wrapper img {
        width: 300px;
        height: 300px;
    }

    .img-wrapper img {
        width: 300px;
        height: 300px;
    }
}

.footer-wrapper {
    width: 100%;
}

.footer-wrapper .footer-icons {
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.footer-wrapper .footer-icons .fa-brands {
    color: #000;
    padding: 15px;
    transition: all .3s ease 0s;
    cursor: pointer;
}

.footer-wrapper .footer-icons .fa-brands:hover {
    transform: scale(1.2);
}

.back-to-top {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-family: vipnagorgialla rg;
    transition: all .3s ease 0s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    transform: scale(1.2);
}

video {
    width: 100%;
}

.footer-img {
    width: 300%;
    height: 100%;
}

/* FOOTER START */

.promo {
    font-family: Helvetica Neue Thin;
    text-align: center;
    padding-bottom: 40px;
}

.promo a {
    text-decoration: underline;
    color: #000;
}

#copyright {
    padding-top: 25px;
}