.share-tech-regular {
  font-family: "Share Tech", sans-serif;
  font-weight: 400;
  font-style: normal;
}

* { 
    font-family: "Share Tech", sans-serif;
}

.header { 
    display: flex;
    align-items: center;
    font-size: 50px;
    flex-direction: row;
    gap: 20px;
}

.header img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
}

.page-content { 
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.left-content {
    flex: 1;
    padding: 20px;
}

.right-content {
    flex: 1;
    padding: 20px;  
    justify-content: center;
    align-items: center;
}

.right-content img { 
    width: 500px;
    height: 450px;
    border-radius: 10px;
}

.content { 
    text-align: left;
    margin: 20px;
    background-color: #49b8ea;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 500px;
}

.background-image { 
    background-image: url('/img/background.png');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
