*{
    box-sizing: border-box;
    margin: 0;
}
body{
    margin: 0;
    padding: 0;
    font-family: Arial;
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
}
a{
    color: #fff;
    text-decoration: none;
}
#main{
    background: rgb(0 0 0 / 60%) url(./images/bg.png) no-repeat center / cover;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-blend-mode: overlay;
}
.main-bottom{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    padding-left: 95px;
    padding-right: 45px;
}
h1{
    font-size: 140px;
    margin: 0;
    line-height: 1;
}
h3{
    font-size: 30px;
    margin: 0;
    line-height: 1;
}
@media screen and (max-width: 1024px){
    h1 {
        font-size: 80px;
        line-height: 1.3;
    }
    .main-bottom{
        padding: 30px;
    }
    h3 {
        font-size: 20px;
    }
    body {
        font-size: 16px;
    }
}
@media screen and (max-width: 767px){
    h1 {
        font-size: 40px;
        margin-top: auto;
        text-align: center;
        padding: 0 30px;
    }
    .main-bottom{
        padding: 30px;
    }
    h3 {
        font-size: 18px;
        text-align: center;
        padding: 0 30px;
    }
    body {
        font-size: 14px;
    }
    .main-bottom img{
        max-width: 280px;
    }
    .main-bottom {
        justify-content: center;
        flex-direction: column;
        position: relative;
        inset: auto;
        margin-top: auto;
        text-align: center;
    }
}