*{
    margin: 0;
    padding: 0;
    font-family: 'Helvetica', sans-serif;
    box-sizing: border-box;
}
body{
    background-color: black;
    color: #ffffff;
    overflow: hidden;
}
#header{
    width: 100%;
    height: 100vh;
}
.logo{
    width: 280px;
}
.container{
    margin-top: 10px;
    padding: 10px 10% 10px 2%;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.header-text{
    padding: 10px 0% 10px 10%;
    margin-top: 20%;
    font-size: 30px;
    max-width: max-content;
    overflow: hidden;
}
.header-text h1{
    font-size: 60px;
    margin-top: 20px;
}
.header-text h1 span{
    color: #a4747c;
}
.dynamic-txt{
    width: 100%;
    height: max-content;
    display: flex;
    align-items: baseline;
    justify-content: end;
}
#social_media{
    position: absolute;
    bottom: 1em;
    left: 2em;
  }
.social_icon{
    color: #ffffff;
    transition: color 0.5s;
    font-size: 2.5em;
    text-decoration: none;
    padding: 30px -20px 20px 40px;
  }
.social_icon:hover{
    color: #a4747c;
  }