* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.container {
    background-color: #000;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    transition: .5s;
}

header {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: auto;
    padding: 20px 0px;
    align-items: center;
}

header img {
    width: 60px;
}

header ul li {
    display: inline-block;
}

header ul li a {
    color: #fff;
    margin: 0px 12px;
    text-decoration: none;
    font-size: 1.1em;
}

header ul li a:hover {
    text-decoration: underline;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: auto;
    height:75vh;
}

.content h2 {
    text-transform: uppercase;
    font-size: 30px;
    letter-spacing: 1px;
}

.content .text {
    color: #fff;
    width: 40%;
}

.content .text p {
    margin: 15px 0px;
}

.content .text a {
    text-decoration: none;
    color: #000;
    background-color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    transition: .5s;
}

.content .text a:hover {
    color: #fff;
    background-color: #ffffff68;
}

.content .img {
    width: 40%;
    transition: .5s;
}

.content .img img {
    width: 55%;
}

.icons {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.icons img {
    width: 54px;
    transition: .5s;
}

.icons img:hover {
    transform: scale(1.1);
    cursor: pointer;
}

@media (max-width:700px) {
    header {
        width: 90%;
    }

    header img {
        width: 35px;
    }

    header ul li a {
        font-size: 10px;
    }

    .content .text {
        color: #fff;
        width: 45%;
    }

    .content {
        width: 90%;
    }

    .content h2 {
        font-size: 20px;
    }

    .content p, .content a {
        font-size: 12px;
    }

    .content a {
        padding: 6px 10px;
    }

    .content .img img {
        width: 80%;
    }

    .icons img {
        width: 32px;
    }
}