body {
    margin: 0;
    padding: 0;
    background: linear-gradient(#000, #5ce1e6);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 350vh;
    font-family: "Open Sans", sans-serif;
}
.logo-img{
    margin: 30px auto;  
    text-align: center;  
}
.logo-img img{
    width: 300px;
    border: 2px solid darkcyan;
    position: absolute;
    margin-left: -155px;
}
.terms-and-conditions {
    max-width: 800px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 120px;
    position: absolute;
    padding-bottom: 30px;
}

.terms-and-conditions h1 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    text-decoration: underline orange;
}

.terms-and-conditions h2 {
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.terms-and-conditions p, .terms-and-conditions ul {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.terms-and-conditions ul {
    list-style-type: disc;
    padding-left: 40px;
}

.terms-and-conditions ul li {
    margin-bottom: 10px;
}

.terms-and-conditions p:last-child {
    text-align: center;
}
.tc-btn{
    padding: 20px 65px;
    margin-left: 225px;
    font-size: 16px;
    letter-spacing: 1px;
    border: 2px solid #777;
    border-radius: 40px;
    background-color: #fff;
    color: #777;
    cursor: pointer;
    box-shadow: none;
    text-decoration: none;
    transition: 0.5s;
    width: 350px;
}
.tc-btn:hover{
    color: #fff;
    background-color: #1f1f1f;
    box-shadow: 0px 3px 5px 3px rgb(18, 186, 198);
}
@media (max-width: 600px) {
    body {
        flex-direction: column;
        align-items: center;
        min-height: 490vh;
        overflow: visible;
    }
    .logo-img{
    margin: 30px auto;  
    text-align: center;  
    }
    .logo-img img {
        width: 250px;
        margin-top: -1875px;
        margin-left: -130px;
        position: absolute;
    }

    .terms-and-conditions {
        width: 85%;
        margin-top: 60px;
        padding: 15px;
    }

    .terms-and-conditions h1 {
        font-size: 1.5em;
    }

    .terms-and-conditions h2 {
        font-size: 1.2em;
    }

    .terms-and-conditions p, 
    .terms-and-conditions ul {
        font-size: 0.9em;
    }

    .tc-btn {
        width: 100%;
        padding: 15px 20px;
        margin-left: 0;
        font-size: 14px;
    }
}