html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    margin: 0;
}
main {
    height: 100vh;
    display: grid;
    align-content: center;
    padding: 0 10px 0;
    grid-template-columns: calc(100vw - 20px);
}
span {
    max-width: calc(100vw - 20px);
    display: flex;
    align-items: center;
    justify-content: center;
}
h2 {
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 500;
}
ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    margin-block: 0;
    padding: 0;
}
li {
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 400;
    list-style: none;
    padding-left: 5px;
}
img {
    width: calc(100% - 20px);
    max-width: 700px;
    min-width: 300px;
}
.logo {
    grid-row-start: 1;
}
.info {
    grid-row-start: 2;
    margin: 10px 0 10px;
}
.email-icon {
    width: 1rem;
    min-width: 30px;
}

/* ================ SVG CSS ================ */
svg {
    height: clamp(300px, 30vh, 40vh);
}
line, path {
    fill: none;
    stroke: rgb(255,166,38);
    stroke-width: 15;
}
polygon {
    fill: rgb(255,166,38);
}
#mask line {
    fill: none;
    stroke: white;
    stroke-width: 15;
    stroke-dasharray: 299 299;
    stroke-dashoffset: 299;
    animation: draw01 5s 1 forwards;
}
#eff, #shi {
    stroke-dasharray: 453.16 453.16;
    stroke-dashoffset: 453.16;
    animation: draw02 5s 1 forwards;
}
#shi_cross, #eff_cross {
    stroke-dasharray: 299 299;
    stroke-dashoffset: 299;
    animation: draw03 5s 1 forwards;
}
@keyframes draw01 {
    0%{stroke-dashoffset:299;}
    15%{stroke-dashoffset:0;}
    100%{stroke-dashoffset:0;}
}
@keyframes draw02 {
    0%{stroke-dashoffset:453.16;}
    10%{stroke-dashoffset:453.16;}
    40%{stroke-dashoffset:0;}
    100%{stroke-dashoffset:0;}
}
@keyframes draw03 {
    0%{stroke-dashoffset:299;}
    20%{stroke-dashoffset:299;}
    50%{stroke-dashoffset:0;}
    100%{stroke-dashoffset:0;}
}