@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@500;600;700&amp;family=Kanit:wght@400;500;600;700&amp;display=swap");
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
  --body: #141410;
  --white: #ffffff;
  --title: #181818;
  --mtitle: #000D27;
  --pra: #999999;
  --subtitle: #121212;
  --base: #c9f31d /*#1d93f3*/; 
  --hover: #c2ec1d9e;
  --bg1: #E9F0FF;
  --ftext: #818181;
  --footer: #181818;
  --cusborder: rgb(38, 37, 37);
  --border1: #414141;
  --ratting: #ffa311;
  --bgsection: #000D27;
  --success: #3FCA90;
  --danger: #ED5050;
  --boxes1: rgba(26, 77, 190, 0.05);
  --cborder: #D9D9D9;
}

body{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--body);
    font-family: "Kanit", sans-serif;

}

h2{
    font-size: 60px;
    color: var(--base);
    margin-bottom: 20px;
    white-space: nowrap;
}

h3{
    color: var(--bg1);
    font-family: "Caveat",sans-serif;
    margin-bottom: 100px;
    font-size: 25px;
}

.placeholder{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    background-color: rgb(23, 23, 23);
    border-radius: 10px;
    padding: 50px 150px 50px 150px;
}

.gears{
    width: 300px!important;
    height: 300px!important;
    margin-bottom: 50px;
}

.p404{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    background-color: rgb(23, 23, 23);
    border-radius: 10px;
    padding: 50px 150px 50px 150px;
}

.letters{
    width: 600px!important;
    margin-bottom: 50px;
}

.back-to-home{
    display: flex;
    align-items: center;
    background-color: rgb(29, 29, 29);
    width: auto;
    height: auto;
    padding: 20px 40px 20px 40px;
    border-radius: 5px;
    cursor: pointer;
}

a{  
    white-space: nowrap;
    text-decoration: none;
    font-family: "Kanit", sans-serif;
    font-weight: 500;
    font-size: 18px;
}

.button-text{
    text-decoration: none;
    color: var(--bg1);
    border: none;
    font-family: "Kanit",sans-serif;
}

.back-to-home:hover{
    background-color: var(--base);
    transition: all 0.4s;
}

.back-to-home:hover .button-text{
    color: var(--body);
    transition: all 0.4s;
}

.p403{
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: rgb(23, 23, 23);
    border-radius: 10px;
    padding: 50px 150px 50px 150px;    
    transform: scale(1);
    transition: transform 0.1s linear;
}

.wrapper{
    display: flex;
    align-items: center;
    width: 100%;

}

.container-left{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    background: radial-gradient(
    circle,
    #f8f8f8 25%,
    #505050 55%,
    rgb(46, 46, 46) 50%);
    border-radius: 10%;
    margin-right: 100px;
}

.container-right{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.letters2{
    width: 600px!important;
    margin-bottom: 50px;
}

.container-left svg{
    width: 600px;
    height: auto;
    margin-right: 100px;
}

.container-right h3{
    margin-bottom: 0px!important;
}