@font-face {
    font-family: halcombold;
    src: url(halcombold.woff);
}

@font-face {
    font-family: halcomlight;
    src: url(halcomlight.woff);
}

@font-face {
    font-family: halcomthin;
    src: url(halcomthin.woff);
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    text-decoration: none;
    color: white;
    scroll-behavior: smooth;
}

::selection {
    background-color: transparent;
}

::-webkit-scrollbar {
    width: 0px;
}

html {
    display: flex;
    flex-direction: column;
    scroll-snap-type: y mandatory;
    scroll-snap-type: mandatory;
}

body {
    width: 700svw;
    overflow-x: overlay;
    overflow-y: hidden;
}

.section {
    width: 100svw;
    height: 100svh;
    position: relative;
    scroll-snap-align: start;
    z-index: 100;
    display: grid;
    grid-template-rows: repeat(20, 5svh);
    grid-template-columns: repeat(10, 10svw);
    overflow: hidden;
    border: 2px solid red;
}

#mainsection {
    position: fixed;
    top: 0;
    z-index: 1;
    display: grid;
    grid-template-rows: repeat(20, 5svh);
    grid-template-columns: repeat(10, 10svw);
    scroll-snap-align: start;
}

#leftsection {
    grid-row: 11/ 21;
    grid-column: 1 / 11;
    background-color: #6211a7;
    transition: background 1s;
}

#rightsection {
    grid-row: 1/ 11;
    grid-column: 1 / 11;
    background-color: #c6c6c8;
    transition: background-color 1s;
}

#img1 {
    grid-row: 10/ 13;
    grid-column: 1 / 10;
    transform: translate(5%, 15%);
    width: 90%;
    background: url(images/world-communication-awards-for-best-digital-experience.png) no-repeat center center;
    background-size: contain;
}