@font-face {
    font-family: 'Days One';
    src: url('fonts/DaysOne-Regular.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Days One', sans-serif;
    background-color: #9dcc58;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    padding: 15px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 0px;
}

.left-header {
    display: flex;
    align-items: center;
}

.icon {
    height: 70px;
    margin-right: 20px
}

.left-header h1 {
    font-size: 55px;
}

.right-header h2 {
    font-size: 35px;
}

hr {
    border: 0;
    height: 2px;
    background-color: #fff;
    width: 100%;
    margin: 10px 0;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-items: center;
    padding: 50px 160px;
}

.left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 20px;
}

.left-content h3 {
    font-size: 55px;
    margin-bottom: 40px;
    text-align: left;
}

.right-content img {
    width: 500px;
    height: auto;
}

.contact-section {
    background-color: #fff;
    color: #000;
    padding: 20px 160px;
    align-items: start;
    text-align: left;
}

.contact-section h3 {
    font-size: 55px;
    margin-bottom: 40px;
}

.contact-items {
    margin: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
}

.contact-item img {
    height: 40px;
    margin-right: 5px;
}

.contact-item span {
    font-size: 30px;
}

@media (max-width: 1200px) {
    header {
        flex-direction: column;
    }

    .right-header {
        margin-top: 10px;
    }

    .left-header h1 {
        font-size: 50px;
    }

    .right-header h2 {
        font-size: 35px;
    }

    .content {
        flex-direction: column;
        padding: 20px 40px;
    }

    .left-content h3 {
        font-size: 35px;
        margin-bottom: 20px;
        text-align: center;
        align-self: center;
    }

    .right-content {
        margin-top: 10px;
        padding-left: 80px;
        padding-right: 40px;
    }

    .right-content img {
        width: 100%;
        max-width: 500px;
    }

    .contact-section {
        text-align: center;
        padding: 20px 0;
    }

    .contact-items {
        flex-direction: column;
        padding-bottom: 0;
    }

    .contact-item {
        padding-bottom: 20px;
    }
}

@media (max-width: 600px){
    .icon {
        height: 50px;
    }

    .left-header h1 {
        font-size: 40px;
    }

    .contact-section h3 {
        font-size: 35px;
    }

    .contact-item span {
        font-size: 20px;
    }

    .left-content h3 {
        font-size: 25px;
    }

    .right-header h2 {
        font-size: 25px;
    }

    .right-content {
        padding-left: 40px;
        padding-right: 20px;
    }
}


