body{
    height: 100vh;
    margin: 0px;
    display: grid;
    background-color: rgb(173, 173, 173);
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body:after{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    pointer-events: none !important;
    background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, .2) 1px, transparent 1px, transparent 2px);
}

main{
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

h1,
p {
    margin: 0;
}

p{
    margin-bottom: 5em;
}

p{
    font-size: 18px;
}

.menu{
    width: 20%;
    max-height: 90vh;
    height: 90vh;
    /*border-style: solid;*/
}

.name{
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    align-self: center;
    text-align: center;
    font-size: 32px;
}

.gray{
    color: rgb(91, 91, 91);
}

.content{
    max-width: 40%;
    overflow-y: scroll;
    flex-basis: 50%;
    scrollbar-width: none;
    height: 70vh;
    /*border-style: solid;*/
    margin-left: 20px;
    text-align: justify;
}

.circle-container{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    
}

.circle-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.icons{
    margin-top: 5em;
    display: flex;
}

.icon-container{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.icon-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.label-container{
    margin-top: 1em;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 24px;
    margin-left: auto;
    margin-right: auto;
}

.label{
    align-self:center;
    margin-top: 20px;
    color: black;
    cursor: pointer;
}

.label:hover{
    color: #616161;
}

a{
    text-decoration: none;
}

.mensaje{
    width: 90%;
    height: 50%;
}

.mensaje-area{
    width: 90%;
    height: 80%;
}

#correo{
    width: 40%;
}

.pregunta{
    font-weight: bold;
}

.label-mensaje{
    margin-top: 5em;
}

.submit{
    background-color: black;
    color: white;
    height: 50px;
    width: 100px;
    border-radius: 15px;
    cursor: pointer;
}

.submit:hover{
    background-color: gray;
    transition: .05s linear;
}