
@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', monospace;
}
html,body{
    display: flex;
    flex: 1;
    height: 100%;
   background: rgb(0,28,85);
    background: -moz-linear-gradient(45deg, rgba(0,28,85,1) 0%, rgba(14,107,168,1) 50%, rgba(166,225,250,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(0,28,85,1) 0%, rgba(14,107,168,1) 50%, rgba(166,225,250,1) 100%);
    background: linear-gradient(45deg, rgba(0,28,85,1) 0%, rgba(14,107,168,1) 50%, rgba(166,225,250,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#001c55",endColorstr="#a6e1fa",GradientType=1);
}
main{
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;

}

.underConstruction{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    margin-left: auto;
    margin-right: auto;
}

h1{
    padding: 1em;
    text-align: center;
    font-size: 2.25em;
    color: whitesmoke;
    font-weight: bolder;
}

.icons{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    margin-left: auto;
    margin-right: auto;
}

i{

    padding: 0 0.5em 0 0.5em;
    font-size: 5em;
}

a{
    display: flex;
    justify-content: center;
    margin-top: 0.75em;
    margin-left: auto;
    margin-right: auto;

    padding: 0.1em;
    text-align: center;
    font-size: 2.25em;
    text-decoration: none;
    color: whitesmoke;
    transition: 0.3s;
    width: 25%;
}

a:hover{
    background-color: whitesmoke;
    color: #0E6BA8;
    border-radius: 30px;
}

@media only screen and (max-width: 500px){
    i{

        padding: 0.25em 0.1em 0 0.1em;
        font-size: 4em;
    }

    h1{
        text-align: center;
        font-size: 1.5em;
        color: whitesmoke;
        font-weight: bolder;
    }

    a{
        margin-top: 1.5em;
        font-size: 1.5em;
    }

}