@font-face {
    font-family: "Cormorant";
    src: url("fonts/Cormorant_Garamond/CormorantGaramond-Regular.ttf");
}

@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins/Poppins-Bold.ttf");
}

html * {
    font-family: "Cormorant";
    line-height: 180%;
    color: #222;
}

h1 {
    font-family: "Poppins";
    font-size: 16pt;
    font-weight: normal;
    margin-top: 50px;
    color: #6258a3;
}

body {
    background-color: #ddd;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 5%;
    font-size: 20pt;
}

.content {
    margin-left: 20%;
    margin-right: 20%;
    margin-bottom: 800px;
}

img {
    width: 60%;
}

a {
    font-family: "Poppins";
    text-transform: uppercase;
    font-size: 15pt;
    color: rgb(224, 104, 160);
}

#top_menu {
    text-align: center;
    position: sticky;
    top: 0;
    color: #777;
    background-color: #eee;
    padding-top: 10px;
    padding-bottom: 10px;
    /*opacity: 70%;*/
    z-index: 999999;
}

#top_menu a {
    color: #888;
    margin-right: 20px;
    padding-right: 20px;
    border-right: 3px solid #bbb;
    font-family: "Poppins";
}

#top_menu a.last {
    border-right: none;
}

.fab.fa-instagram {
    color: #e4405f;
    font-size: 55px;
}

.fab.fa-soundcloud {
    color: #e4405f;
    font-size: 55px;
}

.darker_background {
    background-color: #000;
}

.section {
    /*position: relative;*/
}

.section::before {
    content: "";
    display: block;
    height: 50px; /* Height of the offset */
    margin-top: -50px; /* Negative margin equal to the height */
    visibility: hidden;
    pointer-events: none;
}

/* Media Queries for Mobile Devices */
@media only screen and (max-width: 600px) {
    body {
        font-size: 16pt;
    }

    .content {
        margin-left: 10%;
        margin-right: 10%;
        margin-bottom: 400px;
    }

    img {
        width: 100%;
    }

    a {
        font-size: 12pt;
    }
}
