body{
    display: grid;
    grid-template-areas: "logo name empty"
                         "logo content empty";
    grid-column-gap: 30px;
    justify-content: center;
    grid-template-rows: clamp(1px, 16vw, 120px);
    grid-template-columns: auto calc(clamp(3px,2vw, 15px) * 32.5) 0px;
}

body *{
    font-size: clamp(3px,2vw, 15px);
}


#logo{
    grid-area: logo;

    width: 12ch;
    height: 42ch;
    padding: 0px;
    margin: 0px;

    text-shadow: 5px 5px 7px;
}

#name{
    grid-area: name;
    align-self: end;

    width: 54ch;
    height: 10ch;
    padding-top: 25px;
    margin: 0px;

    text-shadow: 5px 5px 7px;
    font-weight: 400;
}

#content{
    grid-area: content;

    display: flex;
    flex-direction: column;

    width: 100%;        
    padding-top: 3%;
}

#header{
    display: flex;
    gap: min(5px);
    justify-content: space-between;
}

#content_body{
    grid-area: body;
}


.btn{
    display: flex;
    text-align: center;
    align-items: center;
    
    background-color: white;
    border: solid white 0px;
    border-radius: 1px;
    box-shadow: 4px 5px 5px rgb(222, 222, 222);

    padding: 3px;

    color: black;
    text-decoration: none;
    font-size: calc(clamp(3px,2vw, 15px) + 3px);
}
.btn:hover{
    box-shadow: 4px 5px 5px rgb(204, 203, 203);
}

.text{
    font-size: calc(clamp(3px,2vw, 15px) * 1.1);
    color: rgb(85, 85, 85);

    text-align: start;

    padding: 5px;
}