:root{
    --Yellow: #ffda54;
    --Green1: #8efc7e;
    --Green2: #4fe67e;
    --Blue1: #4afcb9;
    --Blue2: #42f2db;
}
@font-face {
  font-family: Raleway;
  src: url(Raleway-Regular.ttf);
}

html {
    height: 100%;
}
body{
    height: 100%;
    margin: 0;
    padding: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background: #111;
    background: linear-gradient(125deg,#050505 0%, #251d00 100%);
    color: white;
    font-family: Raleway, Verdana, Geneva, Tahoma, sans-serif;
    display: flex;
    flex-direction: column;
}
.container{
    margin: auto;
    width: 80%;
    max-width: 800px;
    text-align: center;
    border: solid rgba(255, 255, 255, 0.20) 3px;
    padding: 50px;
}
.flex{
    position: relative;
}
#text{
    z-index: 5;
}
#Logo{
    position: absolute;
    left: 20px;
    top: 20px;
    height: 70px;
}
#HomeClouds{
    width: 250px;
    clip-path: circle();
    position: absolute;
    top: -60px;
    left: -60px;
    z-index: 1;
}
#HomeCircle{
    width: 300px;
    clip-path: circle();
    position: absolute;
    top: 0;
    left: -10px;
    z-index: 2;
}
h1{
    font-weight: bold;
    border-bottom: solid #ffda54 3px;
    font-size: 40px;
}
h3{
    font-size: 20px;
    margin-bottom: 30px;
}
p{
    font-size: 15px;
}
.btn-outline-warning{
    border-color: #ffda54;
    color: #ffda54;
}

@media screen and (max-width: 768px){
    .flex{
        height: 150px;
    }
    #HomeClouds{
        position: absolute;
        top: -40px;
        left: calc(50% - 100px);
        width: 150px;
    }
    #HomeCircle{
        position: relative;
        top: 0;
        left: 40px;
        width: 200px
    }
    .container{
        border: none;
        width: 100%;
        padding: 15px;
    }
    #Logo{
        height: 40px;
    }
}