* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    font-family: monospace;
    text-align: center;
    overflow: hidden;
    color: white;
}

.container {
    height: 100vh;
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr 4fr;
    background: url("../assets/backgroud.jpg");
    background-size: 100vw 100vh;
}

.left-section {
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0.1rem 0.1rem rgba(128, 128, 128, 1);
}

.right-section {
    min-height: 100vh;
    background: transparent;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thick;
    scrollbar-color: turquoise transparent;
}

.left-header {
    height: 40vh;
}

.logo-container {
    width: 30rem;
    position: relative;
    top: -8rem;
    left: -4rem;
}

.logo-container img {
    height: 30rem;
}

.left-content-wrapper {
    /* background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5rem; */
    margin: 0 1rem;
    /* box-shadow: -0.1rem 0.1rem rgba(128, 128, 128, 0.3); */
}

.left-content {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    overflow: visible;
}

.left-icons {
    overflow: visible;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.left-icon-details {
    overflow: visible;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    transition: transform 1s ease;
    margin-bottom: 2rem;
}

.left-icon-details a {
    margin-left: 2rem;
    text-decoration: none;
    font-weight: bolder;
    font-size: 1rem;

}

.left-icon-details a::first-letter {
    color: red;
    font-size: 1.5rem;
}

.left-icon-details img {
    margin-left: 2.5rem;
    width: 1.3rem;
}

.left-icon-details:hover {
    transform: scale(1.4);
}

.right-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 2%;
    margin-left: 60%;
}

.login-button {
    width: 6rem;
    height: 2.5rem;
    background: transparent;
    color: white;
    border-radius: 1rem;
    font-weight: bold;
    border: 0.2rem solid turquoise;
}

.login-button:hover {
    background-color: white;
    color: black;
}

.main-container {
    margin-top: 10rem;
    margin-left: 3rem;
    margin-right: 3rem;
    overflow: visible;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.main-container h1 {
    font-size: 1.7rem;
    font-weight: bolder;
    text-align: left;
}

.main-container h3 {
    font-size: 1.7rem;
    font-weight: bolder;
    text-align: left;
}

.main-container h1::first-letter {
    color: red;
    font-size: 5rem;
}