* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    /*background-color: #bfcdd9;*/
    background-image: url(images/background.jpg);
    background-size: cover;
    background-repeat: repeat;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
}

header img {
    width: 150px;
    margin: 15px;
}

.container {
    display: grid;
    grid-template-areas: 
    "container-two"
    "container-one";
}

.text {
    color: #51618c;
    padding: 10px;
    grid-area: container-one;
    margin: 10px 0;
}

.text h1 {
    font-size: 1.5em;
    text-align: center;
    font-weight: 900;
}

.text h2 {
    font-size: 1em;
    font-weight: 600;
    line-height: 10px;
    padding: 20px 0 0 15px;
}

ul {
    display: in-block;
    list-style: none;
    padding: 15px 25px;
    line-height: 30px;
    font-weight: 600;
}

ul a {
    text-decoration: none;
    color: #51618c;
}

ul a:hover {
    color: white;
}

#ux:hover {
    background-color: #51618c;
    padding: 10px;
    font-size: 1.25em;
}

#web:hover {
    background-color: #51618c;
    padding: 10px;
    font-size: 1.25em;
}

#graphic:hover {
    background-color: #51618c;
    padding: 10px;
    font-size: 1.25em;
}

#floral:hover {
    background-color: #51618c;
    padding: 10px;
    font-size: 1.25em;
}

.text p {
    font-size: .95em;
    font-weight: 500;
}

.wink {
    margin: 10px 0;
    grid-area: container-two;
}

.girl {
    width: 360px;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    margin-top: 25px;
    grid-area: container-three;
}

.click {
    margin: 10px;
}


button {
    background-color: #51618c;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: white;
    text-align: center;
    height: 50px;
    width: 150px;
    font-size: .7em;
    padding: 5px;
    border-radius: 10px;
}

button:hover {
    background-color: white;
    color: #414141;
    font-weight: 900;
}


@media only screen and (min-width: 481px) {

    header img {
        width: 175px;
    }

    .container {
        grid-template-columns: 1fr 2fr;
        grid-template-areas: 
        "container-two container-one"
        ". container-three";
    }
    
    .text {
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px;
        padding: 5px;
        width: 85%;
    }

    .text h1 {
        font-size: 2em;
        font-weight: 900;
        text-align: left;
    }
    
    .text h2 {
        font-size: 1.15em;
        padding: 20px 0px 0px 30px;
    }
    
    ul {
        font-size: 1.15em;
        font-weight: 600;
        list-style: none;
        padding: 15px 50px;
    }
    
    .text p {
        font-size: 1em;
    }

    .girl {
        width: 560px;
        margin-left: 25px;
    }

    .wrapper {
        flex-direction: row;
        justify-content: center;
        align-items: flex-end;
        margin-top: 25px;
    }
    
    button {
        height: 50px;
        width: 200px;
        font-size: 1em;
        padding: 5px;
        border-radius: 10px;
    }
}