
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Sarabun';
    src: url(./fonts/Sarabun-ExtraBold.ttf);
    font-weight: 800;
    font-style: ExtraBold;
}

@font-face {
    font-family: 'Sarabun';
    src: url(./fonts/Sarabun-Medium.ttf);
    font-weight: 500;
    font-style: medium;
}

@font-face {
    font-family: 'Sarabun';
    src: url(./fonts/Sarabun-Regular.ttf);
    font-weight: 400;
    font-style: regular;
}

@font-face {
    font-family: 'Sarabun';
    src: url(./fonts/Sarabun-Bold.ttf);
    font-weight: 700;
    font-style: bold;
}

body{
    margin: 0;
    padding: 0;    
    max-width: 1920px;
}
.layout{
    position: relative;
}
.layout--background{
    background-image: url(../assets/background.png);
    width: 1920px;
    height: 1080px;
    display: flex;
}

.layout--title1{
    font-family: 'Sarabun', sans-serif;
    font-weight: 800;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 77px;
    margin-top: 57px;
    text-align: center;
    margin-right: 186px;
    margin-left: 126px;
    line-height: 80px;
}

.layout--description1{
    font-family: 'Sarabun', sans-serif;
    font-weight: 500;
    font-size: 34px;
    color: #fff;
    line-height: 41px;
    margin-top: 174px;
    margin-right: 90px;
    margin-left: 14px;
    width: 731px;
    height: 198px;
    overflow: hidden;
}
.layout--grouptop{
}
.layout--top{
    width: 100% ;
    font-family: 'Sarabun', sans-serif;
    font-weight: 400;
    font-size: 33px;
    color: #fff;
    line-height: 35.9px;
    margin: 0 0px;
    padding: 10px 22px;
    margin-right: 400px;
    height: 80px;
}

.layout--top__qr{
    font-family: 'Sarabun', sans-serif;
    font-weight: 700;
    font-size: 43px;
    color: #fff;
    line-height: 45px;
    margin: 0;
    padding: 0px;
    height: 284px;
    display: flex;
    align-items: center;
}

.layout--qrtext{
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 38%;
    margin-left: 23px;
    height: 263px;
}

.layout--groupIconsTop{
    margin: 0;
    padding: 0;
}

.layout--right{
    display: flex;
    width: 10%;
}

.layout--img-rounded{
    position: absolute;
    top: 328px;
    left: 191px;
    height: 608px;
    width: 608px;
    border-radius: 50%;
}



/* test css */

.circle-white {
    position: absolute;
    width: 608px;
    height: 608px;
    background:  #fff;
    border-radius: 340px;
    z-index: 1;
    margin-top: 0px;
    right: 292px;
    background-position: 50%;
    background-size: cover;
    
}

.layout--img-rounded__qr{
    top: 802px;
    left: 1439px;
    height: 224px;
    border-radius: 10%;
    width: 228px;
}
.circle-white__2{

}

.layout--title{
    width: 1099px;
}

.layout--description{
    width: 821px;
}

.failsafe {
    width: 1920px;
    height: 1080px;
    background: url(../assets/failsafe.jpg);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    color: red;
    font-family: 'Sarabun', sans-serif;
    font-weight: 400;
}

.invisible {
    display: none;
}

.visible {
    display: block;
}

#imageProfile{
    background-size: cover;
    animation: scaleAnimation 60s infinite alternate;
}

@keyframes scaleAnimation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    80% {
      transform: scale(1);
    }
  }