*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 62.5%;
}

body{
    font-size: 1.6rem;
    font-family: sans-serif;
    color: rgb(12, 12, 12);
}


a{
    text-decoration: none;
    display: inline-block;
}


.blurred-wrapper{
    height: 100vh;
    background: url("./images/wallpaper.jpg") center/cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
    animation: hue 10s infinite alternate;
}

.blurred-wrapper::after{
    content: '';
    width: 100%;
    height: 100%;
    background: inherit;
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(2rem);
    z-index: -1;
    transform: scale(1.15);
}


@keyframes hue {
    from{
        filter: hue-rotate(0);
    }
    to{
        filter: hue-rotate(360deg);
    }
}
.main-header{
    height: 12rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container{
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo{
    font-size: 2.6rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}




.hero{
    display: flex;
    align-items: center;
    height: calc(100% - 12rem);
}

.content-wrapper{
    max-width: 40rem;
    transform: translateY(-4rem);
}

.tagline{
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: lighter;
    margin-bottom: 1rem;
}

.title{
    font-size: 3rem;
    margin-bottom: 2rem;
}

.message{
    font-size: 1.4rem;
    margin-bottom: 3rem;
}

.cta{
    background-color: #000;
    color: #fff;
}

@media screen and (min-width: 768px) {

    .btn{
        padding: 1.5rem 3rem;
    }

    .content-wrapper{
        max-width: 60rem;
    }

    .tagline{
        font-size: 1.6rem;
    }

    .title{
        font-size: 6rem;
    }

    .message{
        font-size: 2rem;
    }
}
#container
{   margin-top: 100px;
    margin-left: 550px;
    height: 300px;
    width: 400px;
    padding: 20px;
    background: #fffdff;
    border-radius: 10px;
    position: relative;
}
#container h2
{
    font-size: 22px;
}
#container h3
{
    font-size: 17px;
    position: absolute;
    top: 190px;
    right: 30px;
    color: #017aff;
}
#container button
{
    height: 50px;
    width: 350px;
    position: absolute;
    bottom: 30px;
    background: #017aff;
    border: 20px;
    outline: none;
    cursor: pointer;
    color: #fffdff;
    font-weight: 700;
    font-size: 20px;
}   
.media-icons a{
    color: #fff;
    font-size: 25px;
    margin-right: 30px;
  }