body {
    margin: 0 2vw 0 2vw;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: timesnewroman, sans-serif;
    min-height: 100vh;
}

.header {
  display: grid;
  column-gap: 10px;
  grid-template-columns: 25vw 50vw 15vw;
  grid-template-areas:
  "A B D"
  "C C C";
}

.box-header-1 {
  grid-area: A;
  place-items: center;
}

.box-header-2 {
  grid-area: C;
  place-items: center;
}

.box-header-3 {
  grid-area: B;
  place-items: center;
}

.box-header-4 {
  grid-area: D;
  place-items: center;
}

.name {
  font-size: 3vw;
  font-family: rosarium;
  color: #a73afd;
  -webkit-text-stroke: 1px rgb(0, 0, 0);
}

.logo {
  width: 10vw;
}

.logo-2 {
  width: 9vw;
  float: right;
}

.menu-burger{
    overflow: hidden;
}

.active {
    text-decoration:underline !important;
}

.menu-burger a {
    float: left;
    display: block;
    color: #ff0000;
    text-align: center;
    padding: 4vw 16px;
    text-decoration: none;
    font-size: 20px;
}


.menu-burger .icon {
    display: none;
}

.menu-burger a:hover {
    color: #f1c50e;
}

@media screen and (max-width: 750px) {
  .menu-burger a {
    display: none;
  }
  .menu-burger a.icon {
    float: right;
    display: block;
    font-size: 3vw;
  }
}

@media screen and (max-width: 750px) {
  .menu-burger.responsive {position: relative;}
  .menu-burger.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .menu-burger.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

a {
  text-decoration: none;
}

@media screen and (max-width: 750px) {
  .name {
    font-size: 6vw;
    -webkit-text-stroke: #00000000;
  }
}