@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

body {
    font: 400 16px 'Open Sans', 'Poppins', sans-serif;
    background-image: url('./images/bg-mobile.svg');
    background-color: hsl(257, 40%, 49%);
    background-repeat: no-repeat;
    color: #fff;
}
img {
    width: 100%;
}
.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}
.wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.container .wrapper header {
    padding: 10px;
}
.container .wrapper header #logo {
    width: 150px;
    margin: 15px 0 40px;
}

.container .wrapper main {
    text-align: center;
    padding: 10px 40px;
}
.container .wrapper main h1 {
    font-size: 26px;
    margin-bottom: 30px;
}
.container .wrapper main button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 220px;
    height: 50px;
    margin: 20px auto 0;

    cursor: pointer;
    border-radius: 30px;
    border: none;
    font-family: 'Poppins';
    color: hsl(257, 40%, 49%);
    box-shadow: 1px 1px 6px 0px hsl(257, 41%, 31%);
    transition: box-shadow .2s;
}
.container .wrapper main button:hover {
    box-shadow: 2px 2px 8px 2px hsl(257, 41%, 31%);
}

.container footer {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    margin: 50px 0;
}
.container footer ul, .container footer ul li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container footer ul li {
    width: 35px;
    height: 35px;
    margin: 0 10px;

    
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s;
}
.container footer ul li:hover {
    transform: scale(1.1);
}
.container footer ul li a {
    color: #fff;
    font-size: 15px;
}


@media screen and (min-width: 375px) {
    body {
        background-image: url('./images/bg-desktop.svg');
    }
}
@media screen and (min-width: 768px) {
    .wrapper {
        flex-direction: row;
        align-items: center;
    }
    .container .wrapper header, .container .wrapper main {
        width: 50%;
        text-align: left;
    }
    .container .wrapper main button {
        margin: 20px 0 0;
        width: 180px;
    }
    .container footer {
        justify-content: flex-end;
    }
}