* {
    top: 0;
    margin: 0;
    padding: 0;
}

body {
    background-image: url("static/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

nav {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2%;
    display: flex;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    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(255, 255, 255);
    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: 300%;
    color: #F3F8FC;
    text-shadow: 3px 0px 1px black;
    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: #c1ddf0;
    text-shadow: 3px 0px 1px black;
    width: 90%;
}

.spotify-button a,.spotify-button a:link,.spotify-button a:visited {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

.spotify-button {
    max-width: 15%;
    min-width: 15%;
    border-radius: 10px;
    padding: 0% 4%;
    background-color: #1ED760;
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: bold;
}
