body {
    font-family: "Source Code Pro", monospace;
    font-size: 13px;
    line-height: 1.3;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
}
.container {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h2, h3 {
    text-align: center;
    margin-bottom: 10px;
}
hr {
    border: none;
    border-top: 2px solid #333;
    margin: 20px 0;
}
.contact-info {
    text-align: right;
    margin-bottom: 20px;
    position: relative;
    top: -74px;
}
.location-info {
    text-align: left;
    margin-bottom: 20px;
}
.skills-section {
    display: flex;
    justify-content: space-between;
}
.column {
    width: 48%;
}
.column ul {
    list-style-type: disc;
    margin: 0;
    padding-left: 20px;
}

/*Mobile view*/

@media only screen and (max-width: 950px) {
    .contact-info {
        text-align: left;
        margin-bottom: 20px;
        position: relative;
        top: -10px;
        line-height: 0.9;
    }
    .location-info {
        line-height: 0.9;
    }
}