* {
    box-sizing: border-box;
    background-color: hsl(220, 90%, 20%);;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: lighter;
}

html {
    font-size: 16px;
}

body {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.root-container {
    display: grid;
    width: 60rem;
    grid-template-columns: 15rem 1fr;
    gap: 0;
    align-content: center;
    height: fit-content;
    border-radius: 2rem;
}

aside {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: hsl(220, 40%, 50%);
    padding: 1rem;
    border-radius: .7rem 0 0 .7rem;
}

aside h2 {
    color: rgb(252, 252, 252);
    font-weight: 900;
    background-color: hsl(220, 40%, 50%);

}

aside p {
    color: rgb(252, 252, 252);
    background-color: hsl(220, 40%, 50%);
    font-size: 1rem;
    line-height: 1.5rem;
}

.address p {
    line-height: .5rem;
}

.contact-header, .address {
    padding: .3rem;
    width: 100%;
    background-color: hsl(220, 40%, 50%);
}

.contact-form-section {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(242, 242, 249);
    padding: 1rem;
    font-size: 1.2rem;
    color: rgb(59, 59, 59);
    border-radius: 0 .7rem .7rem 0;
}

form {
    width: 100%; 
    background-color: rgb(242, 242, 249);
}

fieldset {
    border: none;
    width: 100%;
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-content: center;
    justify-items: center;
    padding: 1rem;
    background-color: rgb(242, 242, 249);
}

.full-name-input {
    grid-column: 1;
}

.email-input {
    grid-column: 2;
}

.message-input {
    grid-column: 1 / -1;
}

.input-container {
    background-color: rgb(242, 242, 249);
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: .5rem;
}

.input-container label {
    padding: .5rem 0;
    background-color: rgb(242, 242, 249);
}

.input-container input {
    padding: 1rem;
    background-color: white;
    border: .1rem solid rgb(175, 175, 175);
    border-radius: .3rem;
}

.input-container textarea {
    padding: 1rem;
    background-color: white;
    width: inherit;
    height: 7rem;
    border: .1rem solid rgb(175, 175, 175);
    border-radius: .3rem;
}

.contact-form-section button {
    width: 100%;
    padding: 1rem;
    color: rgb(252, 252, 252);
    font-size: 1.2rem;
    border: none;
    border-radius: .5rem;
    background-color: hsl(220, 95%, 45%);
}





