@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700");

body, html {
    height: 100vh;
    width:100vw;
    margin: 0;
    display: flex;
    background: hsla(207, 98%, 43%, 1);
    background: linear-gradient(45deg, hsla(207, 98%, 43%, 1) 0%, hsla(198, 100%, 50%, 1) 100%);
    background: -moz-linear-gradient(45deg, hsla(207, 98%, 43%, 1) 0%, hsla(198, 100%, 50%, 1) 100%);
    background: -webkit-linear-gradient(45deg, hsla(207, 98%, 43%, 1) 0%, hsla(198, 100%, 50%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#027ADB", endColorstr="#00B2FF", GradientType=1 );
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
}

.link_button {
    background: hsla(207, 98%, 43%, 1);
    padding: 5px 15px;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: ease-in-out 150ms;
    text-align: center;
}

.link_button:hover, .link_button:focus {
    filter: drop-shadow(5px 5px #002d57);
}

.container {
    width: 30vw;
    margin: 25px auto;
    background-color: white;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    padding: 20px;
    transition: ease-in-out 150ms;
}

.container:hover {
    filter: drop-shadow(10px 10px #002d57);
}

.footer {
    background-color: white;
    width: 30vw;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 20px;
    transition: ease-in-out 150ms;
}

.footer:hover {
    filter: drop-shadow(10px 10px #002d57);
}

.header {
    display: flex;
    background-color: white;
    width: 30vw;
    text-align: center;
    border-radius: 12px;
    margin-top: 20px;
    padding: 20px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    transition: ease-in-out 150ms;
}

.header:hover {
    filter: drop-shadow(10px 10px #002d57);
}

@media only screen and (max-width:1000px) { 
	.container {
        width: 80vw
    }

    .header {
        width: 80vw
    }

    .footer {
        width:80vw
    }
}

@media only screen and (max-width:800px) { 
	.container {
        width: 80vw
    }
    .container:hover {
        filter: drop-shadow(0px 0px #002d57)
    }

    .header {
        width: 80vw
    }
    .header:hover {
        filter: drop-shadow(0px 0px #002d57)
    }

    .footer {
        width:80vw
    }
    .footer:hover {
        filter: drop-shadow(0px 0px #002d57)
    }
}

