* {
    padding: 0;
    margin: 0;
    top: 0;
}

body {
    background-color: black;
    color: white;
}

table, th, td {
    border: 3px solid white;
    border-collapse: collapse;
}

.table-section {
    width: 1000px;
}

tr {
    transition: all 0.5s;
}

th {
    text-indent: 10px;
}

tr:hover {
    background-color: #1ED760;
}

nav {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2%;
    display: flex;
    justify-content: space-between;
}

.title-section, .links{
    min-width: 50%;
    max-width: 50%;
}


nav h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 150%;
    color: #F3F8FC;
}

nav a, a:link, a:visited {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    color: #F3F8FC;
    text-decoration: none;
    padding: 1% 3%;
    border-radius: 5px;
    margin-left: 2%;
}

.links {
    display: flex;
    justify-content: right;
}

.media-link {
    transition: all 0.5s;
    font-weight: bold;
}

#spotify:hover {
    font-weight: bold;
    color: black;
    background-color: #1ED760;
}

#youtube:hover {
    color: white;
    background-color: #FF0101;
}

#instagram:hover {
    color: white;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

#facebook:hover {
    color: white;
    background-color: #1977F3;
}

.main_page {
    width: 100%;
    height: 87.3vh;
    background: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.15) 100%), radial-gradient(at top center, rgba(255,255,255,0.40) 0%, rgba(0,0,0,0.40) 120%) #989898;
 background-blend-mode: multiply,multiply;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.img-wrapper, .information, .title-section, .links{
    min-width: 50%;
    max-width: 50%;
}

.img-wrapper {
    display: flex;
    justify-content: center;
}

.img-wrapper img {
    width: 400px;
    height: 400px;
    border-radius: 10px;
    border: 4px solid rgb(0, 0, 0);
    box-shadow: 5px 5px 10px rgb(66, 66, 66);
}

.text-info {
    padding-bottom: 10%;
}

.text-info h2 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 350%;
    color: #000000;
    margin-bottom: 10%;
}

.text-info p {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 125%;
    color: #000000;
    width: 90%;
}

.second_page {
    transition: background-color 0.5s;
    background-color: black;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.second-content {
    width: auto;
    height: auto;
    text-align: center;
}

.intro-info {
    margin-bottom: 10%;
    font-size: 150%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.top-section th{
    height: 5vh;
    width: 20%;
}

.song-section th{
    height: 10vh;
    width: 20%;
}

.song-track {
    display: flex;
    align-items: center;
}

.album-wrapper img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.top-section {
    text-align: center;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.song-section {
    text-align: left;
    font-weight: lighter;
    font-family: Arial, Helvetica, sans-serif;
}