* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Ubuntu', sans-serif;
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    padding: 30px;
}

header .logo {
    font-size: 30px;
    color: #308879;
}

header nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    font-size: 20px;
    color: #308879;
    transition: letter-spacing 0.2s;
}

header nav ul li a:hover {
    letter-spacing: 2px;
}

header nav ul li:last-child a {
    padding: 7px 50px;
    background-color: #308879;
    color: #fff;
    border-radius: 50px;
}

.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 37px;
    background-color: #e9e8ee;
}

.container .content {
    margin-top: 50px;
    font-size: 2px;
    border-radius: 15px;
    margin-right: 20px;
    width: 800px;
    height: 300px;
}

.container .image {
    margin-top: 200px;
}

.container .image img {
    width: 40vw;
}

.container .content h1{
    color: #308879;
    font-size: 70px;
}

.container .content p{
    color: #aaa;
    font-size: 15px;
    padding: 15px 0;
    font-size: 15px;
    margin: 4;
}

.container .content button{
    outline: none;
    border: none;
    border-radius: 50px;
    background-color: #308879;
    color: #fff;
    font-size: 17px;
    height: 40px;
    width: 180px;
    cursor: pointer;
    transition: 0.2s;
}