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

body {
    background: #fcf4e9;
}

h1 {
    color: #2e6646;
    margin-bottom: 15px;
}

h1:hover {
    transform: rotate(1deg);
    transition: 1s;
}

h2 {
    margin-bottom: 20px;
    color: #2e6646;
}

p {
    line-height: 1.6;
    margin-bottom: 10px;
}

a {
    color: #52896a;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}

a:hover {
    color: rgb(174, 104, 33);
    transition: 1s;
    text-decoration: underline;
}

.container {
    width: 90%;
    max-width: 700px;
    padding: 20px 30px;
    margin: 20px auto;
    border: solid rgba(174, 103, 33, 0.121) 2px;
}

.icon {
    height: 30px;
    display: inline;
    margin: 0 0.125em;
    padding: 0;
    vertical-align: baseline;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 15px 20px;
        margin: 10px auto;
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.2em;
    }

    p {
        font-size: 0.95em;
    }

    a:hover {
        font-size: 0.95em;
    }

    .icon {
        height: 25px;
    }
}